2012-04-22 82 views

回答

4

你可以用這個嘗試:

NSString *string = @" spaces in front and at the end "; 
NSString *trimmedString = [string stringByTrimmingCharactersInSet: 
           [NSCharacterSet whitespaceAndNewlineCharacterSet]]; 

的這裏關鍵是whitespaceAndNewlineCharacterSet,從Apple doc

Returns a character set containing only the whitespace characters space (U+0020) and tab (U+0009) and the newline and nextline characters (U+000A–U+000D, U+0085). 
+0

是的,我知道這種方法的一個例子。但我想修剪我們的字符串中間的空白,就像「中間的空間」 – 2012-04-22 13:50:02

+0

它的作品,謝謝。 – 2015-01-15 11:35:46