Page 1 of 1

have problem with find string need halp

Posted: Wed Aug 05, 2015 8:01 pm
by speedilad
I want to find lines that contain: "space digit digit period digit digit period digit digit period jpg" example " 12.12.48.jpg" the numbers change but are always 2 digits..

I want to replace it with the same string but eliminatie the space before the first 2 numbers.

I have tried for 2 hours without success....

Thanks you so very much... Jim

Posted: Thu Aug 06, 2015 7:39 pm
by ben_josephs
Find what: _(\d\d\.\d\d\.\d\d\.jpg) [Replace the underscore with a space]
Replace with: $1

[X] Regular expression

Posted: Sun Aug 16, 2015 12:44 pm
by ben_josephs
You're welcome.

Re: have problem with find string need halp

Posted: Sun Aug 16, 2015 2:51 pm
by ak47wong
speedilad wrote:Thanks you so very much... Jim
Consider it thanks in advance.