|
[code]acutIsUpper( ); //是否为大写
acutIsAlpha( ) ; //是否为字母
acutIsLower( ) ; //是否为 小写
acutIsXDigit( ) ; //是否为16进制
acutIsSpace( ); //是否为空白字符
acutIsPunct( ); //是否为标点符号
acutIsDigit( ) ; //是否为数字
acutIsPrint( ) ; //是否为可打印字符
acutIsAINum( ); //是否为文本字符
acutIsGraph( ); //是否为图形符号
acutToUpper( ); 转换为大写
acutToLower( ); 转换为小写
acutIsCntrl( ); //是否为控制符号[/code] |
|