我想使用 NSRegularExpression 来获取 NSString 中的一些字符。我成功地显示了我的NSString中的每个URL,但这并不是我想要的......
我想从html标签开始抓取每个网址:
<a href='http://www.bundoransurfco.com/wp-content/uploads/stringornumber.jpg
对于带有任何字母或数字的字符串,并且接受像&#34; _&#34;或&#34; - &#34; 这是我显示每个URL的代码,但我必须将其更改为接受html标记并接受像&#34; - &#34;这样的字符。我已经尝试了很多次,但我不能......:
NSRegularExpression *regex =
[NSRegularExpression regularExpressionWithPattern:@"http?://([-\\w\\.]+)+(:\\d+)?(/([\\w/_\\.]*(\\?\\S+)?)?)?" options:NSRegularExpressionCaseInsensitive error:nil];