I'm trying to perform multiple replacements using regular expressions in a string. Currently, I'm using a regex command (mentioned below) in Notepad++ , and it works as expected; however, when I tried to test the same regex on regexstorm it didn't work.
Assume that I want to find & replace the following:
0
>A
1
>B
2
>C
Input:
5441.32 6140
1:34,360
Find: (0)|(1)|(2)
Replace: (?1A)(?2B)(?3C)
NP++ Output:
544B.3C 6B4A
B:34,36A
regexstorm Output:
544(?1A)(?2B)(?3C).3(?1A)(?2B)(?3C) 6(?1A)(?2B)(?3C)4(?1A)(?2B)(?3C)
(?1A)(?2B)(?3C):34,36(?1A)(?2B)(?3C)
I'm still reading and learning about regular expressions so, could somebody please tell me what am I doing wrong on regexstorm?