如何获得字符串的一部分?

时间:2016-04-27 19:32:55

标签: android string

我需要在我的应用中从字符串中获取链接网址以创建按钮。

String html="<p>Bla Bla Bla</p>
<p>This is a string</p>
<a href="http://mylink.com/pp">This is my default link</a>
<p>I want to get just my default link</p>
<a href="http://mylink.com/kk">This is my 2nd default link</a>
<p>bla bla bla</p>";

我试图分裂,但没有成功,因为解决方案没有分裂。我想获得http://mylink.com/kkhttp://mylink.com/pp个链接。

1 个答案:

答案 0 :(得分:1)

startIndex = indexOf(&#34; http://&#34;);

endIndex = indexOf(&#34; \&#34;&#34;,startIndex)

link = substring(startIndex,endIndex-1)