码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 获取字符串中的所有数字

时间:2018-10-31 18:26:51      阅读:360      评论:0      收藏:0      [点我收藏+]

标签:com   ring   字符   nss   字符串   ted   dig   git   set   

NSString * str = @"123/21年123"

 NSCharacterSet *nonDigitCharacterSet = [[NSCharacterSet decimalDigitCharacterSet] invertedSet];

//获取字符串中的数字

 str = [[str componentsSeparatedByCharactersInSet:nonDigitCharacterSet] componentsJoinedByString:@""];

输出12321123

 

iOS 获取字符串中的所有数字

标签:com   ring   字符   nss   字符串   ted   dig   git   set   

原文地址:https://www.cnblogs.com/lulushen/p/9884873.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!