Remove underscores from file name...

Use this forum for everything concerning script usage
Post Reply
Mus
Newbie
Newbie
Posts: 5
Joined: Mon Mar 21, 2011 10:41 pm

Remove underscores from file name...

Post by Mus »

...and replace with blank. Is there a way to do this?

Cheers
M

User avatar
jtclipper
Administrator
Administrator
Posts: 768
Joined: Tue Aug 10, 2010 12:04 pm

Re: Remove underscores from file name...

Post by jtclipper »

Use a replacement matrix and enter in one line _ to be replaced with a space or nothing.
make sure you have checked the rename column so it will be used in renaming functions.
Now go to the rename options and select to use replacement matrices.

If what you want to do must be inside a script then use this

AnsiReplaceStr( 'original_text', '_', '' );
Last edited by Anonymous on Wed Jul 27, 2011 12:49 am, edited 1 time in total.
Dimitris

Mus
Newbie
Newbie
Posts: 5
Joined: Mon Mar 21, 2011 10:41 pm

Re: Remove underscores from file name...

Post by Mus »

Thanks Dimitris

Post Reply