網頁

2013年8月8日 星期四

iOS開發筆記 - NSString取代字串中某個文字

記錄一下,NSString取代字串中某個文字的方式

NSString *str = @"This is a string. That is a string";
str = [str stringByReplacingOccurrencesOfString:@"string" withString:@"duck"];


這方式會搜尋整個字串,用後面的字取代所有符合前面字串的字

沒有留言:

張貼留言