iPhone Objective C - 如何从 NSString 中删除 URL
我正在寻找一种有效的方法来用替换词“link”替换 NSString(或 NSMutableString)中的 URL,例如...
@"This is a sample with **http://bitbanter.com** within the string and heres another **http://spikyorange.co.uk** for luck"
我希望这成为...
@"This is a sample with **'link'** within the string and heres another **'link'** for luck"
理想情况下,我希望这是某种接受正则表达式的方法,但是,这需要在 iPhone 上工作,最好没有任何库,或者,如果库很小,我可以被说服。
其他方便的功能,请将 @"OMG"
替换为 @"Oh my God"
,但当它是单词的一部分时,即 @"DOOMGAME “
不应该被触摸。
任何建议表示赞赏。
问候, 抢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这实际上玩起来相当有趣,希望该解决方案在某种程度上正是您所寻找的。这足够灵活,不仅可以满足链接的需要,还可以满足您可能希望使用某些条件将一个单词替换为另一个单词的其他模式:
我已经注释了大部分代码,因此它应该是非常不言自明的。如果没有,请随时发表评论,我会尽力提供帮助:
以您的问题为例,您可以这样称呼它:
我希望它有帮助!
干杯,
罗格
This was actually quite a bit of fun to play with and hopefully the solution is somehow what you were looking for. This is flexible enough to cater not only for links, but also other patterns where you may want to replace a word for another using certain conditions:
I have commented most of the code so it should be pretty self explanatory. If not, feel free to leave a comment and I will try my best to help:
And to use your question as an example, here's how you could call it:
I hope it helps!
Cheers,
Rog
从 iOS 4 开始,NSRegularExpression可用。除此之外,您可以通过块枚举字符串中的所有匹配项,从而允许您对每个匹配项执行任何您想要的操作,或者让正则表达式直接为您执行某种替换。
直接字符串替换(如“OMG”->“Oh my God”)可以通过 NSString 直接执行,使用 -stringByReplacingOccurencesOfString:withString: 或 replaceOccurrencesOfString:withString:options:range: 如果您的字符串是可变的。
As of iOS 4, NSRegularExpression is available. Amongst other things, you can enumerate all matches within a string via a block, allowing you to do whatever you want to each, or have the regular expression perform some kinds of substitution directly for you.
Direct string substitutions (like 'OMG' -> 'Oh my God') can be performed directly by an NSString, using -stringByReplacingOccurencesOfString:withString:, or replaceOccurrencesOfString:withString:options:range: if your string is mutable.