IOS NSString 截取,objectAtIndex,rangeOfString

转自: http://www.189works.com/article-80848-1.html

摘要: @import url(http://www.cnblogs.com/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/css/cuteeditor.css);小结:1)componentsSeparatedByString:截取指定字符串;2)pathForResource:获取程序运 ...

小结:

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

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

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

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

5) stringWithContentsOfFile:按行读取文件

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

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 mainBundlepathForResource:@"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:@"\n"];

NSEnumerator *nse = [lines objectEnumerator];

while(tmp = [nse nextObject]) {

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

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值