NSString NSMutableString

简介: -------------------------------------------------------------------------NSString------------------------------------------...

-------------------------------------------------------------------------NSString-------------------------------------------------------------------------------

1:NSData 转换成 NSString

NSString *aString = [[NSString alloc] initWithData:adataencoding:NSUTF8StringEncoding];

2:获取NSString 扩展后缀 (abc.txt) 如果没有后缀,返回的字符串长度为0

NSString *strFileExtension = [strFilePath pathExtension];

3:利用NSRange 进行字符串截取

NSRange range = NSMakeRange(1, 2);
NSLog(@"%@",[@"余书懿" substringWithRange:range]); 

输出:书懿

还可以从头开发截取,或者从末尾开始截取

NSLog(@"%@",NSTemporaryDirectory());
NSLog(@"%@",[NSTemporaryDirectory() substringFromIndex:2]); //
NSLog(@"%@",[NSTemporaryDirectory() substringToIndex:2]);

输出:

2012-11-07 09:51:58.020 FEMicroCoop[1558:c07] /Users/amarishuyi/Library/Application Support/iPhone Simulator/6.0/Applications/1795A32F-605D-4C10-8903-A70668048C76/tmp/

2012-11-07 09:51:59.257 FEMicroCoop[1558:c07]/Users/amarishuyi/Library/Application Support/iPhone Simulator/6.0/Applications/1795A32F-605D-4C10-8903-A70668048C76/tmp/

2012-11-07 09:52:13.126 FEMicroCoop[1558:c07] /Users/amarishuyi/Library/Application Support/iPhone Simulator/6.0/Applications/1795A32F-605D-4C10-8903-A70668048C76/tmp/


注:红色表示被截取掉的.



4:大小写转换

[@"abc" uppercaseString]; //大写
[@"ABC" lowercaseString]; //小写

5:字符串编码格式转换:

转换成Url 可以接受的格式

self.attachmentUrlString = [self.attachmentUrlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

转换回来

NSString *encodeFilePathString = [self.filePathString stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];


6:判断NSString 是否包含中文

NSString *str = @"i'm a 苹果。...";
for(int i=0; i< [str length];i++){
int a = [str characterAtIndex:i];
if( a > 0x4e00 && a < 0x9fff)
NSLog(@"汉字");
}

7:根据字符串长度计算所占用的实际空间

NSLog(@"%@",NSStringFromCGSize([testString sizeWithFont:[UIFont systemFontOfSize:10]]));
这里根据字体设定的大小来确定CGSize


subtitleSize = [subtitleText sizeWithFont:[UIFont systemFontOfSize:12]
                                constrainedToSize:CGSizeMake(180.0, 4000)
                                    lineBreakMode:UILineBreakModeWordWrap];
这个用来确认每一行以 180像素的宽度,然后自动换行 UILineBreakModeWordWrap需要用多少占用面积.多用在计算每一列UITableViewCell的高度


8:去掉字符串两段空格和回车

searchResult = [searchResult stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet ]];


9:将字符串分割为数组   

NSArray *aImageNameInfo = [aImageName componentsSeparatedByString:@"_"];



-------------------------------------------------------------------------NSString-------------------------------------------------------------------------------

-------------------------------------------------------------------------NSMutableString-------------------------------------------------------------------------------


1:NSMutableString 字符串替换

NSMutableString *muStrHTML = [NSMutableString stringWithString:_detailsItem.html];
NSRange range = NSMakeRange(0, [muStrHTML length]); 
[muStrHTML replaceOccurrencesOfString:@"a" withString:@"b" options:NSCaseInsensitiveSearch range:range];


NSCaseInsensitiveSearch 表示不区分大小写进行替换

-------------------------------------------------------------------------NSMutableString-------------------------------------------------------------------------------






目录
相关文章
|
Windows
NSString的boolValue方法甚解
前言 NSString的boolValue之前有使用,但是一直没有真正了解什么时候返回YES(true)或NO(false)。其实,苹果在官方文档中已经写的很清楚,按command + control 点击boolValue进入文档就可以看到: boolValue The Boolean value of the string.
909 0
|
机器学习/深度学习 C语言 索引
|
XML 数据格式
|
iOS开发 索引 MacOS