cctype
v1.0.3
Published
"C++ Ctype.h functions"
Downloads
3
Readme
#Ctype.h A Node module to implement the functions provided by C++'s Ctype.h header. Following are the functions
- isAlpha- Checks whether the character is an alphabet or not.
- isBlank- Checks whether the character is a blank character or not.
- isDigit- Checks whether the character is a digit or not.
- isStrUpper- Checks whether the string is in Uppercase or not.
- isStrLower- Checks whether the string is in Lowercase or not.
- isUpper- Checks whether the character is in Uppercase or not.
- isLower- Checks whether the character is in Lowercase or not.
- isNum- Checks whether the string is a number or not.
- isAlNum- Checks whether the string is an alphanumeric or not.
- isStr- Checks whether the string contains on alphabets or not. It returns true if the function is true and false if the function is false