Deleting ">" characters from e-mail

General questions about using TextPad

Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard

Post Reply
Bernie

Deleting ">" characters from e-mail

Post by Bernie »

I thought this would be easy to do with the "Replace" function in TextPad but I can't get it to work. Here is what I am tryig to do:

I have pasted an e-mail that has been forwarded several times into textpad. The text is contaminated with dozens of ">" characters. I want to remove these characters. What should I do?
Andreas

Re: Deleting ">" characters from e-mail

Post by Andreas »

Replace
>
by
---nothing at all---
Switch off regex, then click on Replace all
Randall McDougall

Re: Deleting ">" characters from e-mail

Post by Randall McDougall »

Or maybe to be safer, with regex ON:

regex: ^[ >]*>

replace with nothing ... which makes sure it only gets leading ones
(note the space in the [] btw)...
Post Reply