Page 1 of 1

Regula expressions Add _ after numbers

Posted: 2018-07-06 07:26:54
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

Re: Regula expressions Add _ after numbers

Posted: 2018-07-06 10:42:25
by antp
Try this expression:
(\d+)(.+)
with this name mask:
$1_$2