Reference for Wiring 1.0 (ALPHA) 0022+. If you have a previous version, use the reference included with your software.
If you see any errors or have any comments, let us know.
Class
String
Name
endsWith()
Examples
String str1 = String("CCCP");
String str2 = String("CP");
// Tests to see if str1 ends with str2
if(str1.endsWith(str2) == true) {
Serial.println("Ends with"); // The string ends with so this line will print
} else {
Serial.println("don't");
}
Description
Tests if this string ends with the specified string. Returns true if the string ends with the specified string and false if not.