我知道有很多关于此的内容,但我想让整个网页视图无法点击,因此就像你按下图片上的某个地方一样......
有解决方案吗?
答案 0 :(得分:2)
好的,那么,也许有一个解决方案。
我不是REGEXP的专家,而是
<a href="http://www.the-link" alt="ddsd">BLABLA</a>
必须成为
BLABLA
我认为这是可能的
修改强>
尝试使用此功能
private String RemoveUrl(String commentstr)
{
String commentstr1=commentstr;
String urlPattern = "((https?|ftp|gopher|telnet|file|Unsure|http):((//)|(\\\\))+[\\w\\d:#@%/;$()~_?\\+-=\\\\\\.&]*)";
Pattern p = Pattern.compile(urlPattern,Pattern.CASE_INSENSITIVE);
Matcher m = p.matcher(commentstr1);
int i=0;
while (m.find()) {
commentstr1=commentstr1.replaceAll(m.group(i),"").trim();
i++;
}
return commentstr1;
}