zoukankan      html  css  js  c++  java
  • ctype.h——使用测试字符函数

    islower()                       是否为小写字母

    isupper()                      是否为大写字母

    isalpha()                       是否为字母

    isalnum()                     是否为字母或十进制数字

    iscntrl()                       是否为控制字符

    isprint()                      是否为可打印字符(包含空格)

    isgraph()                 是否为可打印字符(不包含空格)

    isdigit()        是否为十进制数

    isxdigit()       是否为十六进制的数

    isblank()        是否为标准空白字符(“空格”,' ')

    isspace()                 是否为空位字符(空格, , ,v, ,f)

    ispunct()                isspace()和isalnum()返回false的可打印字符

    tolower()                  大写变小写

    toupper()                  小写变大写

  • 相关阅读:
    SpringBoot 整合Shiro
    Shiro 学习
    SpringBoot 整合security、thymeleaf
    【SpringBoot__Mybatis】整合MyBatis 配置文件版2
    SpringBoot 配置Druid数据源及监控
    lombok 使用
    thymeleaf 常用
    随机模块
    md5加密
    python正则
  • 原文地址:https://www.cnblogs.com/969059506-java/p/3703389.html
Copyright © 2011-2022 走看看