Reference for Wiring version 0027+. 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
void setup() 
{
  Serial.begin(9600);
  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");
  }
}

void loop() 
{
  
}
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 September 16, 2010 11:34:11pm PDT

Creative Commons License