3

我有一个带有连续空格、制表符、换行符的 NSString。有什么方法可以只播放一个空格吗?我有一个小的 UIlabel 视图来显示它们。

4

1 回答 1

4

你可以试试这个:

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

这里的关键是 whitespaceAndNewlineCharacterSet,来自 Apple文档

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).
于 2012-04-22T13:39:22.240 回答