美文网首页
iOS 判断字符串是否是指定的格式类型

iOS 判断字符串是否是指定的格式类型

作者: 没错就是豪哥灬 | 来源:发表于2018-06-27 16:11 被阅读22次

#define NUMANDD @".0123456789"

#define OTHERNUM @"./0123456789"

#define GREADPRICE @"_.0123456789|"

上面是想要的格式类型

下面是方法

-(BOOL)isOnlyhasNumberAndpointWithString:(NSString*)string withRule:(NSString*)rule

{

    NSCharacterSet *cs=[[NSCharacterSet characterSetWithCharactersInString:rule] invertedSet];

    NSString *filter=[[string componentsSeparatedByCharactersInSet:cs] componentsJoinedByString:@""];

    return[stringisEqualToString:filter];

}

相关文章

网友评论

      本文标题:iOS 判断字符串是否是指定的格式类型

      本文链接:https://www.haomeiwen.com/subject/antiyftx.html