How to remove special characters in the string except \"- _\". Now I use:
replaceAll(\"[^\\\\w\\\\s]\", \"\")
it remove all special charact
Use this replaceAll("[\\w\\s\\-\\_\\<.*?>]", "") ;
replaceAll("[\\w\\s\\-\\_\\<.*?>]", "")