NSString 的常用操作

2021-09-08 17:43:28 字數 2147 閱讀 3480

nsstring *teststr01=@"

helloword";

nsstring *teststr02=[teststr01 substringtoindex:5];//

取頭(從頭到哪),to不包括下標內容

nsstring *teststr03=[teststr01 substringfromindex:5];//

去尾(從哪到尾),from包括下標內容

nslog(@"

teststr02:%@ teststr03:%@

",teststr02,teststr03);

nsrange r=;//

取中間,從哪長度是多少

nsstring*teststr04=[teststr01 substringwithrange:r];

nslog(

@"teststr04:%@

",teststr04);

//字串的拼接

nsstring *teststr05 = @"

hello";

//追加

world"];

nslog(

@"teststr06:%@

",teststr06);

//初始化

nsstring *teststr07 = @"

hello";

nsstring *teststr08 = @"

world";

nsstring *teststr09 = [nsstring stringwithformat:@"

%@%@

",teststr07,teststr08];

nsstring *teststr10 = [nsstring stringwithformat:@"

hello%@

",teststr08];

nslog(

@"teststr09:%@

",teststr09);

nslog(

@"teststr10:%@

",teststr10);

//按指定格式(範圍)追加內容

nsstring *teststr11 = @"

hello";

%@%@

",@"

world

",@"

123"

]; nslog(

@"teststr12:%@

",teststr12);

//替換

nsstring *teststr13 = @"

www.kyle.com.cn";

nsstring *teststr14 = [teststr13 stringbyreplacingcharactersinrange:nsmakerange(4, 6) withstring:@"

163"

]; nslog(

@"teststr14:%@

",teststr14);

//編碼集

//引數 檔案的路徑 不包括檔名

nsstring *path = @"";

/"];

//把檔案中的內容 讀取到字串中

//nsstring *str20 = [[nsstring alloc]initwithcontentsoffile:path];

nsstring *teststr15 =[[nsstring alloc]initwithcontentsoffile:path encoding:nsutf8stringencoding error:nil];

nslog(

@"teststr15:%@

",teststr15);

nsstring* use=@"

fcp"

; nsstring* use1=@"

fcp"

;

nsstring*password=@"

123"

; nsstring*password1=@"

123"

;

if ([use isequaltostring:use1]&&[password isequaltostring:password1])

else

NSString的常用方法

nsstring類用於處理字串物件,以 開頭,引號當中則是字串的內容,一旦建立就不可以修改。1.字串的建立 nsstring string 建立乙個字串常量 建立乙個字串常量 nsstring string nsstring alloc init 建立乙個空的字串 nsstring string n...

NSString的常用方法

將字串中開頭和結尾的空格去掉 nsstring stringbytrimmingcharactersinset nscharacterset set 舉例說明 nsstring oldstring macbook pro nsstring newstring oldstring stringbytr...

NSString的常用方法

建立乙個新字串並將其設定為 path 指定的檔案的內容,使用字元編碼enc,在error上返回錯誤 id stringwithcontentsofurl nsurl url encoding nsstringencoding enc error nserror error 建立乙個新字串並將其設定為...