zoukankan      html  css  js  c++  java
  • IOS NSString 截取,objectAtIndex,rangeOfString,stringWithContentsOfFile,NSEnumerator

    小结:

    1)componentsSeparatedByString:截取指定字符串;

    2) pathForResource:获取程序运行时目录

    3)  objectAtIndex:获取当前索引的字符串;

    4)  rangeOfString:获取指定短字符串在长字符串中的开始,结尾索引值;

    5) stringWithContentsOfFile:按行读取文件

    6) componentsSeparatedByString:@" "];换行分割字符串;

    7) NSEnumerator *nse = [lines objectEnumerator]; 将数组转换为NSEnumerator,可向前读取数据;

    8)  nextObject:读取下一行数据;

    void splitString(){

    NSString *animals = @"dog#cat#pig";

    //将#分隔的字符串转换成数组

    NSArray *array = [animals componentsSeparatedByString:@"#"];

    NSLog(@"animals:%@",array);

    //获取程序运行时目录

    NSString *escapedPath = [[NSBundle mainBundle] pathForResource:@"info" ofType:@"plist"];

    NSArray *strings = [escapedPath componentsSeparatedByString: @"/"];

    NSString *tmpFilename  = [strings objectAtIndex:[strings count]-1];

    NSRange iStart = [escapedPath rangeOfString : tmpFilename];

    NSString *runtimeDirectory = [escapedPath substringToIndex:iStart.location-1];

    NSLog(@"runtimeDirectory:%@",runtimeDirectory);

    //按行读取文件

    NSString *tmp;

    NSArray *lines = [[NSString stringWithContentsOfFile:@"test.txt" encoding:nil error:nil] 

      componentsSeparatedByString:@" "];

    NSEnumerator *nse = [lines objectEnumerator];

    while(tmp = [nse nextObject]) {

    NSLog(@"tmp:%@", tmp);

    }

    }

  • 相关阅读:
    离职or not 离职
    RelativeLayout总结
    MVC中小试了一下Jquery
    tricks about andor in python
    【回旋数字】c语言实现
    退役?
    HDU4546 比赛难度
    WEB页面导出为EXCEL文档的方法
    开始→运行→命令
    控制Repeater显示列数
  • 原文地址:https://www.cnblogs.com/wangxiaorui/p/5038587.html
Copyright © 2011-2022 走看看