删除特殊字符\

时间:2015-09-23 13:50:47

标签: java html tags char replaceall

我正在使用Java,我希望从我的字符串中删除\的所有匹配项(类似http\:\/\/news.investors\/092115\-772034\-red\-hat\-tops\-16\-views\-beat.html

我使用替换所有,但我不知道正则表达式是如何做到的。

1 个答案:

答案 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

来自:Java, Removing backslash in string object