PHP » PYTHON |
login |
register |
about
|
PYTHON ctype_xdigit
is this article helpful?
|
Python replacement for PHP's ctype_xdigit
[
edit
| history
]
import string all(c in string.hexdigits for c in text) ctype_xdigit(PHP 4 >= 4.0.4, PHP 5) ctype_xdigit — Check for character(s) representing a hexadecimal digit Description
bool ctype_xdigit
( string $text
)
Checks if all of the characters in the provided string, text , are hexadecimal 'digits'. Parameters
Return ValuesReturns TRUE if every character in text is a hexadecimal 'digit', that is a decimal digit or a character from [A-Fa-f] , FALSE otherwise. Examples
Example #1 A ctype_xdigit() example
<?phpThe above example will output: The string AB10BC99 consists of all hexadecimal digits. The string AR1012 does not consist of all hexadecimal digits. The string ab12bc99 consists of all hexadecimal digits.
|
more
Recently updated
more
Most requested
more
Last requests
|