• iOS字符串大小写转换使用小结


      iOS开发中字符串用的比较多,追加,拆分,截取,替换,比较,大小写转换使用的频率还挺高。今天看oc技术书的时候看到关于大小写转换的地方,有一个说的是所有字母首字母大写,还是第一次看到,记录一下,以备后用。

      1、所有的小写字母转换成大写

      NSString *ceshi=@"You do not have the corresponding permissions, please contact the system administrator to add";

        //所有的小写字母都转换成大写

        NSLog(@"first:%@",[ceshi uppercaseString]);

      first:YOU DO NOT HAVE THE CORRESPONDING PERMISSIONS, PLEASE CONTACT THE SYSTEM ADMINISTRATOR TO ADD

      2、所有的大写字母转换成小写

        NSLog(@"second:%@",[ceshi lowercaseString]);

      second:you do not have the corresponding permissions, please contact the system administrator to add

      3、所有的首字母大写,其余变成小写

        NSLog(@"third:%@",[ceshi capitalizedString]);

      third:You Do Not Have The Corresponding Permissions, Please Contact The System Administrator To Add

  • 相关阅读:
    XSS跨站脚本攻击
    TCPDUMP
    使用adb命令抓取崩溃日志
    Android ADB 5037端口被占用问题解决办法:改端口号
    Fedora 29安装 和配置
    给linux 增加软件图标
    新手上路教程5_安全管理
    shell基础笔记
    新手上路教程4_DQL语言
    MySQL 和SQLserver 创建表注释字段的差别
  • 原文地址:https://www.cnblogs.com/bigant9527/p/14744286.html
Copyright © 2020-2023  润新知