我有一个文本,我不能把html标签,链接我会使用像wiki这样的语法[转到应用程序](http://foo.com),我想用正则表达式提取文本并将文本转换为html。我尝试使用正则表达式\ [。\)但它似乎不起作用。
Pattern wikiLink = Pattern.compile("\\[.\\)");
Matcher mURL = wikiLink.matcher(content);
StringBuffer sb = new StringBuffer();
while (mURL.find()) {
...
}
答案 0 :(得分:0)
如果我理解你的问题:
\[.*?\]\(http://.*?\)
这个正则表达式将找到表单的所有文本
[text](http://url)