我需要在我的应用中从字符串中获取链接网址以创建按钮。
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/kk和http://mylink.com/pp个链接。
答案 0 :(得分:1)
startIndex = indexOf(&#34; http://&#34;);
endIndex = indexOf(&#34; \&#34;&#34;,startIndex)
link = substring(startIndex,endIndex-1)