美文网首页
如何在字符串中取到数字

如何在字符串中取到数字

作者: 单腿行走的大象 | 来源:发表于2016-03-15 14:49 被阅读21次

    NSString *string = @"sadasd1+22][13ds98";

    NSRegularExpression *regular = [NSRegularExpression         regularExpressionWithPattern:@"[a-zA-Z.-]" options:0 error:NULL];

    NSString *result = [regular stringByReplacingMatchesInString:string options:0 range:NSMakeRange(0, [string length]) withTemplate:@""];

    NSLog(@"%@", result);

    相关文章

      网友评论

          本文标题:如何在字符串中取到数字

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