SyntaxFix
Write A Post
Hire A Developer
Questions
You could search for:
<li><a href="#">[^\n]+
And replace with:
$0</a>
Where $0 is the whole match. The exact semantics will depend on the language are you using though.
$0
WARNING: You should avoid parsing HTML with regex. Here's why.