您的位置:首页 > 移动开发 > IOS开发

IOS中忽略字符串两边空格比较

2013-04-23 22:23 225 查看
-(Bool) compareStr:(NSString *) str :(NSString *) str1 {

//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).

NSCharacterSet *set = [NSCharacterSet whitespaceAndNewlineCharacterSet];

//Returns a new string made by removing from both ends of the receiver characters contained in a given character set.

NSString *trimedString = [str stringByTrimmingCharactersInSet:set];

NSString *trimedString 1= [str1 stringByTrimmingCharactersInSet:set];

if([trimedString isEqualToString:trimedString1])

{

return YES;

}

else

{

return NO;

}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: