How do i set the following to lowercase...
Producer(s):
Engineer(s):
for all fields...
Somewhere inmy scripts it has s being cap. (S), it's okay but for the the examples above i would like to leave it as lowercase (s).
Thanks...
How do i set the following to lowercase...
Producer(s):
Engineer(s):
for all fields...
Somewhere inmy scripts it has s being cap. (S), it's okay but for the the examples above i would like to leave it as lowercase (s).
Thanks...
Replace with regular expression:
Field: _ALL
Regular Expression: (S)
Replace matches with: s
From:
Producer(S):
Engineer(S):
To:
Producer(s):
Engineer(s):
Field ______________: _TAG
Regular expression _: r(S):
Replace matches with: r(s):
DD.20140215.1735.CET
I think you meant the replace action. This reg exp can change any S to (s) and which would mean seriously messing up the OPs tags if run on all his tracks. The simple replace action with replace as:
er(S)and
er(s) to replace it.Thanks, works perfectly!