Replace multiple texts with other multiple texts
-
Hi!
Is this possible to replace this
‘abc’: ‘1000’,
'qqq: ‘2000’,
‘d1’: ‘3000’,
‘ff2’: ‘abcd’,and become like this at once?
‘zxc’: ‘1000’,
'aaa: ‘2000’,
‘d2’: ‘3000’,
‘ff3’: ‘efgh’,Thanks a lot
-
Yep.
Find:
(abc)|(qqq)|(d1)|(ff2)|(abcd)
Repl:(?1zxc)(?2aaa)(?3d2)(?4ff3)(?5efgh)
Mode: regular expression -
@alan-kilborn Works perfect! Thanks a lot!
-
This post is deleted!