Page 1 of 1
Remove underscores from file name...
Posted: Tue Jul 26, 2011 8:09 pm
by Mus
...and replace with blank. Is there a way to do this?
Cheers
M
Re: Remove underscores from file name...
Posted: Wed Jul 27, 2011 12:36 am
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', '_', '' );
Re: Remove underscores from file name...
Posted: Wed Jul 27, 2011 6:46 pm
by Mus
Thanks Dimitris