4

Possible Duplicate:
Find and Replace several several different values all at once

to find multiple words i use |
But how regex must i use to replace words with many words?
Look here please:

enter image description here

user143822
  • 309
  • 2
  • 7
  • 13
  • 2
    Why not just do this with multiple search and replaces? – soandos Jul 06 '12 at 02:20
  • 1
    A command line utility like `awk` or `sed` or a more unix-like editor like `vim` could do this more easily. – Warren P Jul 06 '12 at 02:22
  • Sorry guys..but i don't know how use awk and sed. In N++ i have problems to replace ? or () simbols when i have set regex mode..but sometimes i must replace with this simbols..Where is Multiple search and replace? Is a plugin? – user143822 Jul 06 '12 at 02:27
  • @soandos because that takes considerable longer. – cutrightjm Jul 06 '12 at 02:31
  • i'm using windows now and awk does not want to work..Sed seems to work from CMD. What is the command? – user143822 Jul 06 '12 at 02:41
  • This command (example) works: sed -e "s/zxc/??''*/" -e "s/Text1/www.google.com/"yyy.txt but sed have a replacement character limit (not more 20000) and how can replace / character? Thanks – user143822 Jul 06 '12 at 03:06

1 Answers1

1

Just use the normal find/replace function without regex. Do that multiple times for each word-pair you want to replace. If you have to apply this to multiple files, you can record a macro with notepad++.

sinned
  • 489
  • 6
  • 20