In a file that contains this line:
Using Perl syntax.
Find pattern: \[(\].+?\[)
Replace pattern: [1\12
Or: \[1\12
should give:
But the result is:
The hex is: 53 58 31 0A 5D 38 0D 0A
Is this a bug? Or is my regular expression at fault?
Code: Select all
S[]=Fabcdx; S[];
Find pattern: \[(\].+?\[)
Replace pattern: [1\12
Or: \[1\12
should give:
Code: Select all
S[1]=Fabcdx; S[2];
Code: Select all
S[1
];
Is this a bug? Or is my regular expression at fault?