xcode - 如何提取由字符分隔的字符串的一部分“

时间:2014-02-22 19:35:06

标签: ios string

我有一个字符串,我需要提取完整的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

包含在“特殊字符?

提前致谢。

1 个答案:

答案 0 :(得分:1)

不是最快的解决方案,但可能是最短的解决方案

[yourString componentsSeparatedByString:@"\""][1];

如果你的字符串有可能没有两个“符号”,你应该检查

[yourString componentsSeparatedByString:@"\""].length

第一