zoukankan      html  css  js  c++  java
  • IOS学习笔记39--NSString各种语法的使用

    今天就NSString的各种语法学习学习,以后慢慢补充;

    1.字符串的遍历                  

     

         NSString *string = @"CHENGWULI";             

        //字符串的长度

        int count = [string length];

        NSLog(@"字符串的长度是%d",count);

        //遍历字符串中的每一个字符

        for(int i =0; i < count; i++){

            char c = [string characterAtIndex:i];

            NSLog(@"字符串第 %d位为 %c",i,c);

        }

    2.字符串的比较

     

        NSString *str0 = @"lichengwu";

        NSString *str1 = @"lichengwu-A";

        //字符串完全相等比较

        if([str0 isEqualToString:str1]){

            NSLog(@"字符串完全相等");

        }

        else{

             NSLog(@"字符串不相等");

        }

        //字符串以开头比较

        if([str0 hasPrefix:@"li"]){

            NSLog(@"字符串str0li开头");

        }

        

        //字符串以结尾比较

        if([str1 hasSuffix:@"wu-A"]){

            NSLog(@"str1字符串以wu-A结尾");

        }






  • 相关阅读:
    mysql索引需要了解的几个注意
    apache配置--虚拟目录
    简化LINUX的命令输入 简化linux命令 快捷键 短路径
    apache vhost 访问权限配置
    php中常用设置
    win7配置nginx + php
    restful php
    php 笔记 汇总 学习
    mysql修改表结构
    mysql 优化工具
  • 原文地址:https://www.cnblogs.com/dyllove98/p/3239000.html
Copyright © 2011-2022 走看看