Returns whether the string contains only alphabetic characters (a-z, A-Z).
Example:
assert (Strings.isAlpha ("Hello") == true);
assert (Strings.isAlpha ("Hello1") == false);
| s |
string for checking. |
|
true if string is non-empty and all characters are alphabetic. |