Regula expressions Add _ after numbers

If you need help on how to use the program
Post Reply
jme
Posts: 2
Joined: 2018-07-06 07:17:39

Regula expressions Add _ after numbers

Post by jme »

Hi,

I have to rename files names starting with numbers ( between 8 to 9 numbers) followed by characters and sometimes any others numbers.

What can be the regular expression to add a _ just after the first serie of numbers ?

Names always start with numbers.

example 123456blabla.ext
123456_blabla.ext
antp
Site Admin
Posts: 9651
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Re: Regula expressions Add _ after numbers

Post by antp »

Try this expression:
(\d+)(.+)
with this name mask:
$1_$2
Post Reply