NSCharacterSet

NSCharacterSet

inherits from: NSObject

Conforms to: NSObject, NSCoding, NSMutableCopying, NSCopying

  

    Class Methods:

whitespaceCharacterSet

Returns a character set containing only the in-line whitespace characters space (U+0020) and tab (U+0009)

+ (id)whitespaceCharacterSet

e.g.

    NSString * str;

    NSString *trimmedStr;

    trimmedStr = [str stringByTrimmingCharactersInset:[NSCharacterSet whitespaceCharacterSet]];

    


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章