Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java相当于什么:
def filt_out(s): return re.sub('<a href="(.*)">', '', s.replace('<br/>', '\n').replace('"', '\"').replace('</a>', ''))
public static String filtOut(String s) { return s.replaceAll("<a href=\"(.*)\">", "").replaceAll("<br/>", "\n").replaceAll(""", "\"").replaceAll("</a>", ""); }
但是,不推荐这种代码风格以及一般的方法。通常,您应该使用特殊的 HTML 解析器来处理 HTML。正则表达式对于该任务来说太有限了。
您可以在 html 解析器上查看以下问题: