Search code examples
replacenotepad++symbolsremoveall

notepad++ How to remove multi symbol comma,dot,Exclamation mark


Example

  • Email me, new! responses ...to ?my posts
  • Email me new responses to my posts

I search multi time on google . I can replace it one by one but i want a formular remove all symbol one time. I'm try search and replace with (.|,|?|!|...|) but it's doesn't work.


Solution

  • You have to escape specials characters and select the option "regular expression" in the replace window. This is your regex.

    \.|\?|!|\,
    

    enter image description here