Removing all characters before the first space

Advanced Renamer forum
#1 : 26/04-21 23:29
Ted
Ted
Posts: 1
I am looking for a method for removing all characters before the first space (including the space. The space character will appear later in the file name so I can't just group it and the number of leading numbers and . characters can vary.

Example:
2.13.5 My Clean File Name.pdf

To:
My Clean File name


26/04-21 23:29
#2 : 27/04-21 01:22
David Lee
David Lee
Posts: 1125
Replace: "[^ ]* "
With: nothing
Occurence: 1st
Use regular expressions

Don't include the quotes in the replace string and note the space at the end.

The regex will match any number of non-space characters followed by a single space from the beginning of the filename.


27/04-21 01:22