Sigurd3K
11/2/2015 - 1:33 PM

Regex

Regex

Bulk renaming in Regex

Bulk Renaming Utility is used. May not work somewhere else, unless you add the necessary flags.

Removing all underscores from the start of a string.

(_){0,}(.*)

2 Groups, group one catches an underscore, group one is repeated 0 to an unlimited times {0,} to capture all underscores before group 2 starts (.*). Group 2 captures all characters. Then we replace the string by the result of goup 2 only \2,