Reputation: 2426
I want to use RegEx to change <
to [
and >
to ]
.
<mailto:[email protected]>
[mailto:[email protected]]
The email address obviously changes in each instance.
Upvotes: 1
Views: 179
Reputation: 15010
If you're replacing all the <mailto:
..>
tags in an existing HTML doc then you're going to need something like:
regex: <(mailto:[^>]*)>
replace with: [$1]
Upvotes: 1