![]() |
VOOZH | about |
| S.No | Function | Description | Return Values |
|---|---|---|---|
| 1. | isalnum() | This function identifies the alphanumeric characters | Returns 0 if the passed argument is non - alphanumeric character Returns non zero value if the passed argument is alphanumeric character |
| 2. | isalpha() | This function identifies the alphabets from other characters | Returns 0 if the passed argument is not an alphabet Returns non zero value if the passed argument is an alphabet |
| 3. | isblank() | This function identifies the blank spaces from other characters | Returns 0 if the passed argument is not a blank space Returns nonzero value if the passed argument is a blank space |
| 4. | iscntrl() | This function identifies the control characters(\n, \b, \t, \r). | Returns 0 if the passed argument is not a control character Returns nonzero value if the passed argument is a control character |
| 5. | isdigit() | This function identifies numbers in character. | Returns 0 if the passed argument is not a number Returns nonzero value if the passed argument is a number |
| 6. | islower() | This function identifies the lowercase alphabets. | Returns 0 if the passed argument is not a lowercase alphabet Returns nonzero value if the passed argument is a lowercase alphabet |
| 7. | isprint() | This function identifies the printable characters. | Returns 0 if the passed argument is a non printable character Returns nonzero value if the passed argument is a printable character |
| 8. | ispunct() | This function identifies punctuation characters (characters that are neither alphanumeric nor space). | Returns 0 if the passed argument is not a punctuation character Returns nonzero value if the passed argument is a punctuation character |
| 9. | isspace() | This function identifies white-space characters. | Returns 0 if the passed argument is not a white-space character Returns nonzero value if the passed argument is a white-space character |
| 10. | isupper() | This function identifies the uppercase alphabets. | Returns 0 if the passed argument is not an uppercase alphabet Returns nonzero value if the passed argument is an uppercase alphabet |
| 11. | isxdigit() | This function identifies the hexadecimal digit. | Returns 0 if the passed argument is not a hexadecimal digit Returns nonzero value if the passed argument is an hexadecimal digit |
| 12. | tolower() | This function converts uppercase alphabet to lowercase alphabet. | Returns lowercase alphabet of the corresponding uppercase alphabet |
| 13. | toupper() | This function convert lowercase alphabet to uppercase alphabet. | Returns uppercase alphabet of the corresponding lowercase alphabet |
The number of alphabets are 24 The number of digits are 4
No. of uppercase alphabets are 5 No. of lowercase alphabets are 19 hI, wELCOME TO gEEKSfORgEEKS
Hello Everyone. Welcome to GeeksForGeeks portal.