1. 程式人生 > >移除字串NSString中的特定字元

移除字串NSString中的特定字元

如果要移除NSStringni'hao shi'jie中的單引號,那麼可以使用這條語句:

NSString *stringWithoutQuotation = [myString 
   stringByReplacingOccurrencesOfString:@"'" withString:@""];

也可以使用這條語句:

   NSString* noQuotation =
    [[myString componentsSeparatedByCharactersInSet:@"'"]
                           componentsJoinedByString:@""
];