1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
//convenience method
// NSString *str = [[NSString alloc]initWithString:@"This is NSString"];
NSString *str = @"This is NsString";
NSLog(@"str :%@",str);
//immutable class
NSString *result;
// 8번 index 부터 시작
result = [str substringFromIndex:8];
NSLog (@"result :%@",result);
// 0번 index 에서 11번까지
result = [str substringToIndex:11];
NSLog (@"result :%@",result);
// 0번부터 11번까지 자른후 8번인덱스 부터 다시 자른다
result = [[str substringToIndex:11]substringFromIndex:8];
NSLog (@"result :%@",result);
// 8번 index 에서 11번인덱스까지 자른후 lowercase
result = [[str substringWithRange:NSMakeRange(8,3)] lowercaseString];
NSLog (@"result :%@",result);
}
return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
공부하면서 자주쓰는 메서드들을 정리하고있습니다
WRITTEN BY
,