Program not replacing terms with '/' in batch mode

A place to try and solve your RegEx problems.
Post Reply
sm1th33
Posts: 2
Joined: Thu Aug 22, 2019 1:09 am

Program not replacing terms with '/' in batch mode

Post by sm1th33 »

Hi,
I have;
^\bHEAD/S\b

to be replaced by;

HEAD AND SHOULDERS

This works in the regex tester and for making individual changes but an changes with a '/' are skipped. Could this be a bug?
Sorry about the caps. It wan't mean to be aggressive.

Cheers,
Ian

https://drive.google.com/file/d/1IgS8hw ... sp=sharing

Pro Version 3.1.1
User avatar
DigitalVolcano
Site Admin
Posts: 1717
Joined: Thu Jun 09, 2011 10:04 am

Re: Program not replacing terms with '/' in batch mode

Post by DigitalVolcano »

Does escaping the forward slash (with a backslash) help?

i.e.-

Code: Select all

^\bHEAD\/S\b
Post Reply