NSString用法
3、字符串比较
NSString *str7 = @"hello000";
NSString *str8 = [NSString stringWithString:str7];
NSString *str9 = [NSString stringWithFormat:@"HE%@",@"llo00000"]; NSLog(@"str7 >>>>> %p", str7);
NSLog(@"str8 >>>>> %p", str8);
NSLog(@"str9 >>>>> %p", str9); // str7和str9本质是两个指针,所以直接用==比较值
if (str7 == str9) {
NSLog(@"相等");
} else {
NSLog(@"不相等");
} // 比较字符串内容是否一样
if ([str7 isEqualToString:str9]) {
NSLog(@"相等");
} else {
NSLog(@"不相等");
} NSString *str12 = @""; NSString *str13 = @""; NSComparisonResult result1 = [str12 compare:str13 options:NSCaseInsensitiveSearch range:NSMakeRange(,)]; //options 选项 range 类别 NSLog(@"result1 >>> %ld", result1);
4、字符串拼接
NSString *str14 = @"hello"; NSString *str15 = [str14 stringByAppendingString:@"lisi"];//append 附加,添加 NSString *str16 = [@"/Users/nidediannaomingzi" stringByAppendingPathComponent:@"Desktop"];
5.字符串查找
NSString *str17 = @"nice nice nice";
if ([str17 containsString:@"nnnn"]) {
NSLog(@"jin lai le");
}//contains 包含,容纳 NSString *str18 = @"410000xxxxxxxxxx";
if ([str18 hasPrefix:@""]) {
NSLog(@"shi de ");
}// hasPrefix:方法的功能是判断创建的字符串内容是否以某个前缀开始 NSString *str19 = @"icon.exe";
if ([str19 hasSuffix:@"png"] || [str19 hasSuffix:@"jpg"]) {
NSLog(@"合法头像");
}//hasSuffix:方法的功能是判断创建的字符串内容是否以某个后缀开始 NSString *str20 = @"~/Desktop/test.h"; NSLog(@"pathExtension >>> %@", [str20 pathExtension]);// 文件扩展名 Extension 扩展,扩大 NSLog(@"absolute path >>> %@", [str20 stringByExpandingTildeInPath]); //Expand 展开 tilde波浪号 NSLog(@"absolute path >>> %@", [[str20 stringByExpandingTildeInPath] stringByAbbreviatingWithTildeInPath]); // 合闭波 浪号 abbreviate缩略 缩短
6、字符串截取
NSString *str21 = @"hello, yangyang"; NSLog(@"subString >>> %@", [str21 substringFromIndex:]);//sub 词根是‘子’ 从第六个字符截取 NSLog(@"subString >>> %@", [str21 substringToIndex:]); // 截取六个字符 NSLog(@"subString >>> %@", [str21 substringWithRange:NSMakeRange(, )]); //字定义截取范围
//截取?之后的
NSRange sizeRange= [presaleGuideURL rangeOfString:@"?"];
NSString *whatStr1 = [presaleGuideURL substringFromIndex:sizeRange.location+];
NSLog(@"-->%@",whatStr1);//model=product&action=guidelines&goods_id=138206 //截取到?
NSString *whatStr2 = [presaleGuideURL substringToIndex:sizeRange.location];
NSLog(@"-->%@",whatStr2);//http://rwandroid.shetest.cn/index.php //从?之后截取5位
NSRange myRange = [presaleGuideURL rangeOfString:@"?"];
myRange.length = ;
NSString *whatStr3 = [presaleGuideURL substringWithRange:myRange];//?mode
NSLog(@"-->%@",whatStr3);
7、字符串大小写转换
NSString *enString = @"In our life, some love was doomed to no end, it is only responsible for the meeting.";
NSLog(@"全大写------>%@", [enString uppercaseString]);
NSLog(@"全小写------>%@", [enString lowercaseString]);
NSLog(@"首字母大写--->%@", [enString capitalizedString]); 全大写------>IN OUR LIFE, SOME LOVE WAS DOOMED TO NO END, IT IS ONLY RESPONSIBLE FOR THE MEETING.
全小写------>in our life, some love was doomed to no end, it is only responsible for the meeting.
首字母大写--->In Our Life, Some Love Was Doomed To No End, It Is Only Responsible For The Meeting. // 字母变换大小写时,中文字符被忽略,不会报错
NSString *enChString = @"ps: 在我们一生中,有的爱情本来就注定没有结局,它只负责相遇。";
NSLog(@"全大写------>%@", [enChString uppercaseString]);
NSLog(@"全小写------>%@", [enChString lowercaseString]);
NSLog(@"首字母大写--->%@", [enChString capitalizedString]); 全大写------>PS: 在我们一生中,有的爱情本来就注定没有结局,它只负责相遇。
全小写------>ps: 在我们一生中,有的爱情本来就注定没有结局,它只负责相遇。
首字母大写--->Ps: 在我们一生中,有的爱情本来就注定没有结局,它只负责相遇。
/*********可变字符串*********/
//NSMutableString *mstr = [NSMutableString stringWithCapacity:50];// Capacity容量 //NSMutableString *mstr = [NSMutableString stringWithString:@"haha"]; NSMutableString *mstr = [NSMutableString stringWithFormat:@"haha-%@-", @"xiaosan"];
1、追加
[mstr appendString:@"zhang"]; [mstr appendString:@"san"];
2.删除
[mstr deleteCharactersInRange:NSMakeRange(, )];
3.插入
[mstr insertString:@"haha" atIndex:];
4.替换
[mstr replaceCharactersInRange:NSMakeRange(, ) withString:@"woshitihuan"];//从第五个字符开始用teacher替换4个字符
5.格式化追加
[mstr appendFormat:@"-%@", @"stage1"];
6、字符串赋值
str31 = str30; [str31 appendString: @" 和字符串2"];
NSString用法的更多相关文章
- NSString 用法大全。
一.NSString 创建字符串. NSString *astring = @"This is a String!"; 创建空字符串,给予赋值. NSString *astri ...
- IOS NSString 用法详解
[cpp] view plain copy //NSString 操作均不改变自身值 //构建字符串 NSString *szTmp = @"A string"; ...
- NSString用法,object-C数组以及字符串拼接和分割
一.介绍使用NSString创建一个字符串的代码如下: #import <Foundation/Foundation.h>int main (int argc, char *argv[]) ...
- 【IOS 开发】Objective-C Foundation 框架 -- 字符串 | 日期 | 对象复制 | NSArray | NSSet | NSDictionary | 谓词
一. 字符串 API 1. NSString 用法简介 (1) NSString API 介绍 NSString 功能 : -- 创建字符串 : 使用 init 开头的实例方法, 也可以使用 Stri ...
- iOS UIAlertController跟AlertView用法一样 && otherButtonTitles:(nullable NSString *)otherButtonTitles, ... 写法
今天写弹出框UIAlertController,用alertView习惯了,所以封装了一下,跟alertView用法一样,不说了,直接上代码: 先来了解一下otherButtonTitles:(nul ...
- NSString、NSMutableString基本用法
NSString其实是一个对象类型.NSString是NSObject(Cocoa Foundation的基础对象)的子类 一.NSString的创建 1.创建常量字符串.NSString *astr ...
- NSString类的相关用法
一.NSString字符串连接NSString* string; // 结果字符串 NSString* string1, string2; //已存在的字符串 1. string = [NSStrin ...
- NSString常见用法总结
//====================NSStirng 的常见用法==================== -(void)testString { //创建格式化字符串:占位符(由一个%加一个字 ...
- Objective-C:NSString类的常见用法
几种常见的用法为:字符串的创建.字符串的搜索.字符串的比较.字符串的转换 用途一:字符串的创建 void ex1() { //1.常量字符串的对象 NSString *str1 = @"he ...
随机推荐
- android学习笔记六——Spinner
注:参考http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2015/0105/2264.html Spinner ==> Spinner ...
- python安装psycopg2
vim ~/.bash_profile export PATH=/Applications/Postgres.app/Contents/Versions/9.4/bin/:$PATH pip inst ...
- Thinkpad X240修改bios引导方式
来源:http://blog.csdn.net/jsship/article/details/19121149 修改笔记本的BIOS设置!这是非常重要的步骤之一.否则,你的U盘不能引导手提电脑进入PE ...
- [platform]新旧内核的device设备注册对比
转自:http://blog.chinaunix.net/uid-7332782-id-3268801.html 1. Version2.6内核启动过程 start_kernel( ) //板子上电启 ...
- [工具开发] Perl 爬虫脚本--从美国国家漏洞数据库抓取实时信息
一.简介 美国国家漏洞数据库收集了操作系统,应用软件的大量漏洞信息,当有新的漏洞出现时,它也会及时发布出来. 由于信息量巨大,用户每次都需要到它的网站进行搜索,比较麻烦.如果能有个工具,每天自动分析它 ...
- Php检测文件编码方法
<?php /** * 检测文件编码 * @param string $file 文件路径 * @return string|null 返回 编码名 或 null */ function det ...
- Eclipse:启动时提示"Failed to load the JNI shared library"的解决方案
今天打开Eclipse,弹出提示框"Failed to load the JNI shared library" 原因1:给定目录下jvm.dll不存在. 对策:(1)重新安装jr ...
- 《挑战程序设计竞赛》 4.1.1 矩阵 P286
想写几篇挑战的感悟,也有助于自己理解这本书.但这上面大多贴的是书上的代码,主要是为了用的时候后直接复制就好了,这样就很方便了,就相当于黑盒模板了. 1.线性方程组 /** \brief 高斯消元法 * ...
- POJ 1410 Intersection(计算几何)
题目大意:题目意思很简单,就是说有一个矩阵是实心的,给出一条线段,问线段和矩阵是否相交解题思路:用到了线段与线段是否交叉,然后再判断线段是否在矩阵里面,这里要注意的是,他给出的矩阵的坐标明显不是左上和 ...
- NeHe OpenGL教程 第三十九课:物理模拟
转自[翻译]NeHe OpenGL 教程 前言 声明,此 NeHe OpenGL教程系列文章由51博客yarin翻译(2010-08-19),本博客为转载并稍加整理与修改.对NeHe的OpenGL管线 ...