简单的正则表达式方法字符串替换

前端之家收集整理的这篇文章主要介绍了简单的正则表达式方法字符串替换前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

做法使用 NSMutableString 的replaceOccurrencesOfString方法


下面例子,把字符串中的数字都替换做0


title=@"test123 test";


NSMutableString *mutableStr = [NSMutableString stringWithString:title];


[mutableStr replaceOccurrencesOfString:@"\\d+" withString:@"0" options:NSRegularExpressionSearch range:NSMakeRange(0,[mutableStr length])];


http://xiaoxiaostduio.net

原文链接:https://www.f2er.com/regex/363090.html

猜你在找的正则表达式相关文章