NSString常用方法实例


//1、创建常量字符串。

NSString *astring = @"This is a String!";
//2、创建空字符串,给予赋值。
NSString *astring = [[NSString alloc] init];
 
astring = @"This is a String!";
 
[astring release];
 
NSLog(@"astring:%@",astring);// NSString *astring = [[NSString alloc] init];
 
NSLog(@"0x%.8x", astring);
 
astring=@"This is a String!";
 
NSLog(@"0x%.8x", astring);
 
[astring release];
 
NSLog(@"astring:%@",astring);
 
//3、在以上方法中,提升速度:initWithString方法
NSString *astring = [[NSString alloc] initWithString:@"This is a String!"];
 
NSLog(@"astring:%@",astring);
 
[astring release];
 
//4、用标准c创建字符串:initWithCString方法
char *Cstring = "This is a String!";
 
NSString *astring = [[NSString alloc] initWithCString:Cstring];
 
NSLog(@"astring:%@",astring);
 
[astring release];
 
//5、创建格式化字符串:占位符(由一个%加一个字符组成)
int i = 1;
 int j = 2;
 
NSString *astring = [[NSString alloc] initWithString:[NSString stringWithFormat:@"%d.This is %i string!",i,j]];
 
NSLog(@"astring:%@",astring);
 
[astring release];
 
//6、创建临时字符串
NSString *astring;
 
astring = [NSString stringWithCString:"This is a temporary string"];
 
NSLog(@"astring:%@",astring);
 

//7、从文件创建字符串

NSString *path = [[NSBundlemainBundle] pathForResource:@"astring.text"ofType:nil];
NSString *astring = [[NSString alloc] initWithContentsOfFile:path];
NSLog(@"astring:%@",astring);
[astring release];
 

//8、用字符串创建字符串,并写入到文件  

NSString *astring = [[NSString alloc] initWithString:@"This is a String!"];
 
NSLog(@"astring:%@",astring);
 
NSString *path = @"astring.text";    
 
[astring writeToFile: path atomically: YES];
 
[astring release];  
注:此路径path只只是示意,真实路径并非如此
 
//9、用C比较:strcmp函数
char string1[] = "string!";
 char string2[] = "string!";
 if(strcmp(string1, string2) == 0)
{
 
    NSLog(@"1");
 
}
 

//10、isEqualToString方法    

NSString *astring01 = @"This is a String!";
 
NSString *astring02 = @"This is a String!";
 
BOOL result = [astring01 isEqualToString:astring02];
 
NSLog(@"result:%d",result);
 

//11、compare方法(comparer返回的三种值)    

//NSString *astring01 = @"This is a String!";
 
NSString *astring02 = @"This is a String!";    
 
BOOL result = [astring01 compare:astring02] == NSOrderedSame;    //NSOrderedSame判断两者内容是否相同  
NSLog(@"result:%d",result);    
 //NSString *astring01 = @"This is a String!";
 
NSString *astring02 = @"this is a String!";
 
BOOL result = [astring01 compare:astring02] == NSOrderedAscending;    //NSOrderedAscending判断两对象值的大小(按字母顺序进行比较,astring02大于astring01为真)  
NSLog(@"result:%d",result);//NSString *astring01 = @"this is a String!";
 
NSString *astring02 = @"This is a String!";
 
BOOL result = [astring01 compare:astring02] == NSOrderedDescending;    //NSOrderedDescending判断两对象值的大小(按字母顺序进行比较,astring02小于astring01为真)  
NSLog(@"result:%d",result);     
 
 

//12、不考虑大小写比较字符串

//1. NSString *astring01 = @"this is a String!";
 
NSString *astring02 = @"This is a String!";
 
BOOL result = [astring01 caseInsensitiveCompare:astring02] == NSOrderedSame;    //NSOrderedDescending判断两对象值的大小(按字母顺序进行比较,astring02小于astring01为真)  NSLog(@"result:%d",result); //2. NSString *astring01 = @"this is a String!";
 
NSString *astring02 = @"This is a String!";
 
BOOL result = [astring01 compare:astring02
 
options:NSCaseInsensitiveSearch | NSNumericSearch] == NSOrderedSame;    //NSCaseInsensitiveSearch:不区分大小写比较 NSLiteralSearch:进行完全比较,区分大小写 NSNumericSearch:比较字符串的字符个数,而不是字符值。  
NSLog(@"result:%d",result); 
 
//13、输出大写或者小写字符串
NSString *string1 = @"A String"; 
 
NSString *string2 = @"String"; 
 
NSLog(@"string1:%@",[string1 uppercaseString]);//大写  
NSLog(@"string2:%@",[string2 lowercaseString]);//小写  
NSLog(@"string2:%@",[string2 capitalizedString]);//首字母大小
 

//14、-rangeOfString: //查找字符串某处是否包含其它字符串

NSString *string1 = @"This is a string";
 
NSString *string2 = @"string";
 
NSRange range = [string1 rangeOfString:string2];
 int location = range.location;
 int leight = range.length;
 
NSString *astring = [[NSString alloc] initWithString:[NSString stringWithFormat:@"Location:%i,Leight:%i",location,leight]];
 
NSLog(@"astring:%@",astring);
 
[astring release];
 

//15、-substringToIndex: 从字符串的开头一直截取到指定的位置,但不包括该位置的字符

NSString *string1 = @"This is a string";
 
NSString *string2 = [string1 substringToIndex:3];
 
NSLog(@"string2:%@",string2);
 

//16、-substringFromIndex: 以指定位置开始(包括指定位置的字符),并包括之后的全部字符

NSString *string1 = @"This is a string";
 
NSString *string2 = [string1 substringFromIndex:3];
 
NSLog(@"string2:%@",string2);
 

//17、-substringWithRange: //按照所给出的位置,长度,任意地从字符串中截取子串

NSString *string1 = @"This is a string";
 
NSString *string2 = [string1 substringWithRange:NSMakeRange(0, 4)];
 
NSLog(@"string2:%@",string2);
 

//18、-stringWithCapacity: //按照固定长度生成空字符串

NSMutableString *String;
 
String = [NSMutableString stringWithCapacity:40];
 
//19、-appendString: and -appendFormat: //把一个字符串接在另一个字符串的末尾
NSMutableString *String1 = [[NSMutableString alloc] initWithString:@"This is a NSMutableString"];
 
[String1 appendString:@", I will be adding some character"];
 
[String1 appendFormat:[NSString stringWithFormat:@", I will be adding some character"]];
 
NSLog(@"String1:%@",String1);
 
//20、-insertString: atIndex: //在指定位置插入字符串
NSMutableString *String1 = [[NSMutableString alloc] initWithString:@"This is a NSMutableString"];
 
[String1 insertString:@"Hi! " atIndex:0];
 
NSLog(@"String1:%@",String1);
 
//21、-setString: 完全替换
NSMutableString *String1 = [[NSMutableString alloc] initWithString:@"This is a NSMutableString"];
 
[String1 setString:@"Hello Word!"];
 
NSLog(@"String1:%@",String1);
 
//22、-replaceCharactersInRange: withString: //用指定字符串替换字符串中某指定位置、长度的字符串
NSMutableString *String1 = [[NSMutableString alloc] initWithString:@"This is a NSMutableString"];
 
[String1 replaceCharactersInRange:NSMakeRange(0, 4) withString:@"That"];
 
NSLog(@"String1:%@",String1);
 
//23、-hasPrefix: //检查字符串是否以另一个字符串开头
NSString *String1 = @"NSStringInformation.txt";
 
[String1 hasPrefix:@"NSString"] = = 1 ?  NSLog(@"YES") : NSLog(@"NO");
 
[String1 hasSuffix:@".txt"] = = 1 ?  NSLog(@"YES") : NSLog(@"NO");
 
//24、扩展路径
NSString *Path = @"~/NSData.txt";
 
NSString *absolutePath = [Path stringByExpandingTildeInPath];
 
NSLog(@"absolutePath:%@",absolutePath);
 
NSLog(@"Path:%@",[absolutePath stringByAbbreviatingWithTildeInPath]);
 

//25、文件扩展名

NSString *Path = @"~/NSData.txt";
 
NSLog(@"Extension:%@",[Path pathExtension]);
 
   
转自:http://www.open-open.com/lib/view/open1339910373471.html
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
LLRuntime 是 iOS 开发中常用的一个运行时库,可以在运行时动态地获取和修改对象的属性、方法等信息,常用于实现方法交换、动态添加方法等功能。下面是 LLRuntime 的使用方法: 1. 导入 LLRuntime 库 在 Xcode 中,可以使用 CocoaPods 导入 LLRuntime 库,也可以手动导入。手动导入的方式是: 将 LLRuntime 文件夹拖入项目中,勾选“Copy items if needed”。 在 Build Phases 中的 Link Binary With Libraries 中添加 libLLRuntime.a。 2. 使用 LLRuntime 2.1 获取类的信息 获取类的信息可以使用以下方法: ```objc Class cls = [NSObject class]; // 获取类名 const char *name = class_getName(cls); NSLog(@"class name: %s", name); // 获取父类 Class superCls = class_getSuperclass(cls); NSLog(@"super class name: %s", class_getName(superCls)); // 获取实例变量 unsigned int ivarCount; Ivar *ivarList = class_copyIvarList(cls, &ivarCount); for (unsigned int i = 0; i < ivarCount; i++) { Ivar ivar = ivarList[i]; const char *ivarName = ivar_getName(ivar); const char *ivarType = ivar_getTypeEncoding(ivar); NSLog(@"ivar name: %s, type: %s", ivarName, ivarType); } free(ivarList); // 获取属性 unsigned int propertyCount; objc_property_t *propertyList = class_copyPropertyList(cls, &propertyCount); for (unsigned int i = 0; i < propertyCount; i++) { objc_property_t property = propertyList[i]; const char *propertyName = property_getName(property); const char *propertyAttributes = property_getAttributes(property); NSLog(@"property name: %s, attributes: %s", propertyName, propertyAttributes); } free(propertyList); // 获取方法 unsigned int methodCount; Method *methodList = class_copyMethodList(cls, &methodCount); for (unsigned int i = 0; i < methodCount; i++) { Method method = methodList[i]; SEL methodName = method_getName(method); const char *methodType = method_getTypeEncoding(method); NSLog(@"method name: %@, type: %s", NSStringFromSelector(methodName), methodType); } free(methodList); ``` 2.2 方法交换 方法交换可以使用以下方法: ```objc @implementation NSObject (LLRuntime) + (void)load { static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ Class cls = [self class]; SEL originalSEL = @selector(description); SEL swizzledSEL = @selector(ll_description); Method originalMethod = class_getInstanceMethod(cls, originalSEL); Method swizzledMethod = class_getInstanceMethod(cls, swizzledSEL); BOOL didAddMethod = class_addMethod(cls, originalSEL, method_getImplementation(swizzledMethod), method_getTypeEncoding(swizzledMethod)); if (didAddMethod) { class_replaceMethod(cls, swizzledSEL, method_getImplementation(originalMethod), method_getTypeEncoding(originalMethod)); } else { method_exchangeImplementations(originalMethod, swizzledMethod); } }); } - (NSString *)ll_description { NSString *description = [self ll_description]; return [NSString stringWithFormat:@"<%@: %p, desc: %@>", NSStringFromClass([self class]), self, description]; } @end ``` 2.3 动态添加方法 动态添加方法可以使用以下方法: ```objc @implementation NSObject (LLRuntime) - (void)ll_setName:(NSString *)name { objc_setAssociatedObject(self, @selector(ll_name), name, OBJC_ASSOCIATION_COPY_NONATOMIC); } - (NSString *)ll_name { return objc_getAssociatedObject(self, _cmd); } + (BOOL)resolveInstanceMethod:(SEL)sel { if (sel == @selector(ll_name)) { class_addMethod([self class], sel, (IMP)ll_name, "@@:"); return YES; } return [super resolveInstanceMethod:sel]; } @end ``` 以上就是 LLRuntime 的使用方法,可以根据实际需求选择使用。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值