PHP » PYTHON |
login |
register |
about
|
PYTHON ctype_alpha
is this article helpful?
|
Python replacement for PHP's ctype_alpha
[
edit
| history
]
text.isalpha() ctype_alpha(PHP 4 >= 4.0.4, PHP 5) ctype_alpha — Check for alphabetic character(s) Description
bool ctype_alpha
( string $text
)
Checks if all of the characters in the provided string, text , are alphabetic. In the standard C locale letters are just [A-Za-z] and ctype_alpha() is equivalent to (ctype_upper($text) || ctype_lower($text)) if $text is just a single character, but other languages have letters that are considered neither upper nor lower case. Parameters
Return ValuesReturns TRUE if every character in text is a letter from the current locale, FALSE otherwise. Examples
Example #1 A ctype_alpha() example (using the default locale)
<?php The above example will output: The string KjgWZC consists of all letters. The string arf12 does not consist of all letters.
See Also
|
more
Recently updated
more
Most requested
more
Last requests
|