-
Notifications
You must be signed in to change notification settings - Fork 0
Comparators
unsigned char *s_beginsWith(String *str, void *str2, S_TYPE type)
Returns a boolean if str content begins with str2 content.
unsigned char *s_endsWith(String *str, void *str2, S_TYPE type)
Returns a boolean if str content ends with str2 content.
char *s_contains(String *str, void *str2, S_TYPE type)
Finds the first occurrence of the string str2 in str content. Returns a pointer to the beginning of the substring in str content.
unsigned char *s_equals(String *str, void *str2, S_TYPE type)
Returns a boolean if str content equals str2 content.
unsigned char *s_isNumeric(String *str)
Returns a boolean if str contains only numeric characters.
unsigned char *s_isAlphaNumeric(String *str)
Returns a boolean if str contains eather numeric characters or alphabetical characters or both.