Reference for Wiring 1.0 (ALPHA) 0021+. 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 = "CCCP";
String str2 = "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("Not");
}
Description
Tests if this string ends with the specified string. Returns true if the string ends with the specified string and false if not.