removing Quote from the sentence

Hi ,

Can any one help me out to remove Quotes from following

I have a variable “Test” which stores the text like ,

Text = “test_block4@gmail.com” has previously been added to the table that stops acknowledgments. If a request is “automatically sending email” to this address please call the helpline, 974-7777.

i want the Text in such a format it should not have any quotes i.e

Text = test_block4@gmail.com has previously been added to the table that stops acknowledgments. If a request is automatically sending email to this address please call the helpline, 974-7777.

NOTE : remove quotes should be generic , i.e it should remove quotes where ever it is present.

Thanks In Advance,

put <<Text = "test_block4@gmail.com" has previously been added to the table that stops acknowledgments. If a request is "automatically sending email" to this address please call the helpline, 974-7777.>> into testText
put testtext
delete all occurrences of <<">> from testText
put testtext

Yep. Or you can use the word “quote” instead of <<">> if you like, so it can be as simple as:

delete quote from testText

If you didn’t want to delete all of the quotes, you could delete just some of them, using a command like this:

delete the first two quote from testText