isPunct()

Analyse if a char is punctuation (that is a comma, a semicolon, an exclamation mark and so on). Returns true if thisChar is punctuation. isPunct(thisChar)
thisChar: variable. Allowed data types: char. true: if thisChar is a punctuation.
		
if (isPunct(myChar)) {  // tests if myChar is a punctuation character
  Serial.println("The character is a punctuation");
}
else {
  Serial.println("The character is not a punctuation");
}