Regular Expressions

Regular expression: ^\s*[0-9]+\s*-\s*
Replace with:

This one will remove the track-number (if followed by a dash) and white space at the beginning of a string
(for instance 01 - Come Together will become Come Together)

Regular expression: ^\s*[0-9]+\s+
Replace with:

This one will remove the track-number if followed by a white space
(for instance 01 Come Together will become Come Together)

1 Like