/ Published in: Regular Expression
As an example – will find and replace all <b> elements with <strong>
Expand |
Embed | Plain Text
(?m:<b>(.*)</b>) <strong>$1</strong>
You need to login to post a comment.
As an example – will find and replace all <b> elements with <strong>
(?m:<b>(.*)</b>) <strong>$1</strong>
You need to login to post a comment.