簡體   English   中英

如何在NSString中刪除撇號和空格

[英]How to remove apostrophe and whitespace in NSString

NSString *str = @"mario's test";
NSString *stringWithoutSpaces = [str stringByReplacingOccurrencesOfString:@" " withString:@""];

使用此功能,我可以刪除空格,但是我也需要刪除撇號'

stringWithoutSpaces = "mariostest"
*stringWithoutSpaces = [[str stringByReplacingOccurrencesOfString:@" " withString:@""]
                             stringByReplacingOccurrencesOfString:@"'" withString:@""]; 

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM