Framework (A-Z)

Reference for Wiring version 1.0 Build 0100+ If you have a previous version, use the reference included with your software. If 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) {
  // The string ends with so this line will print
  Serial.println("Ends with");  
} 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.
Syntax
endsWith(str)
Parameters
str String: any valid character string
Returns boolean
Usage Application
Updated on July 07, 2011 11:09:05pm PDT

Creative Commons License