Content is
Hello World.
<a href="#" target=_blank>hello World</a>
How to replace the in html code and keep the other in the text.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Can you try searching for
and replacing it with a single space?
This looks for
inside tags (preceded by a<and possibly other characters except>).This is extremely brittle, though. For example, it will fail if you have
</>symbols in strings/attributes. Better avoid getting those into the wrong locations in the first place.