我有一个字符串,我需要提取完整的http地址,以便将其传递给Safari。
我的字符串是:
<a href="http://maps.google.com/maps?q=Example Street, 1, Rome">Example Street, 1</a>
coulg如何获得:
http://maps.google.com/maps?q=Example Street, 1, Rome
包含在“特殊字符?
中提前致谢。
答案 0 :(得分:1)
不是最快的解决方案,但可能是最短的解决方案
[yourString componentsSeparatedByString:@"\""][1];
如果你的字符串有可能没有两个“符号”,你应该检查
[yourString componentsSeparatedByString:@"\""].length
第一