Remove Sequential Numbered files from file name

A swapping-ground for Regular Expression syntax

Remove Sequential Numbered files from file name

Postby z0mbieslayer » Tue Apr 09, 2019 10:19 pm

Hello! I'm new here but i have a problem. I have files numbered sequentially and there are 43,000 different files. For example,
One is named "043924 style.css"(Yes it is a website). So I need to delete the numbers if i want to use the site properly. If you need any more info just ask.
z0mbieslayer
 
Posts: 1
Joined: Tue Apr 09, 2019 10:15 pm

Re: Remove Sequential Numbered files from file name

Postby therube » Wed Apr 10, 2019 12:14 am

1:Regex
Code: Select all
Match:  ^(\d+\s+)(.*)
Replace:  \2
therube
 
Posts: 1314
Joined: Mon Jan 18, 2016 6:23 pm


Return to Regular Expressions