Page 1 of 1

Remove double quotes (") from file names

PostPosted: Wed Dec 04, 2019 11:07 pm
by clemensma@gmail.com
I have a number of files where the file name contains 2 double quotes ("). These files names were created from a CD ripping program that goes to the internet to get the stuff used to create the files names.

Is there any way to replace the " characters with blanks? When I try using the replace function the program won't enable the "Rename" button even though I have a number of files selected.

Thanks for your help.

Re: Remove double quotes (") from file names

PostPosted: Thu Dec 05, 2019 12:20 am
by Admin
Hi, when you select files after having entered the renaming criteria, does the new name column show then new name that would be applied? If not, the match and replace is not matching any chars.
thanks

Re: Remove double quotes (") from file names

PostPosted: Thu Dec 05, 2019 5:40 pm
by therube
Can you copy & paste the actual "quote" character into a post, here.

Can you copy & paste the actual "quote" character into 3:Replace box in BRU?
And if you do that, is any change noted (once you put something into the with: box)?

For instance, ? , (which is not a quote character) does not seem to be picked up in 3:Replace.


(I happen to be on XP at the moment, so that may be skewing what I'm seeing.)

Re: Remove double quotes (") from file names

PostPosted: Thu Dec 05, 2019 7:12 pm
by clemensma@gmail.com
I found the problem - The characters I want to change aren't doubles as used most of the time.

The are actually “ (hex 93) and ” (hex 94) not " (hex 22).

Re: Remove double quotes (") from file names

PostPosted: Thu Dec 05, 2019 8:19 pm
by therube
Right, that's what I was trying to get at.

And that does work.

3:Replace
Code: Select all
Replace:  “
With: <space>


Code: Select all
videop“play"back
->
videop play"back


Then you'd need to do the same for the " character.

You would copy those characters, as you have done here, & paste them into BRU.

Re: Remove double quotes (") from file names

PostPosted: Thu Dec 05, 2019 8:40 pm
by clemensma@gmail.com
Yes, it works. Thanks