Similar to this question, but not sure how to implement in this case.
A trusted user (don't need to be concerned with validating input) is typing/pasting email addresses into a text field. On the blur event, I'd like to look at the text and clean up whatever he inputed (typically after copying and pasting a list of addresses from an email client).
"Bob Smith" <[email protected]>, [email protected], "John Doe"<[email protected]>
would be trimmed to:
[email protected], [email protected], [email protected]
This regex should remove anything in double-quotes as well as < and > characters.
<
>
/".*?"|[<>]/
In Javascript, you might have something along these lines:
line.replace(/".*?"|[<>]/g, '');
1.4m articles
1.4m replys
5 comments
57.0k users