我正在使用Java,我希望从我的字符串中删除\
的所有匹配项(类似http\:\/\/news.investors\/092115\-772034\-red\-hat\-tops\-16\-views\-beat.html
)
我使用替换所有,但我不知道正则表达式是如何做到的。
答案 0 :(得分:-1)
public static void main(String[] args) {
String myUrl = "http\\:\\/\\/news.investors\\/092115\\-772034\\-red\\-hat\\-tops\\-16\\-views\\-beat.html";
myUrl = myUrl.replace("\\","");
System.out.println(myUrl);
}
输出:
http://news.investors/092115-772034-red-hat-tops-16-views-beat.html