I have this XML:
<[Results]>
<[Data]>
<[div]>THIS IS HTML! <[/div]>
<[/Data]>
<[/Results]>
What is the regular expression to get <[div]>THIS IS HTML!<[/div]>?
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.
Try this:
Will match anything inside the div tags.
Though I am complied to tell you that that regex is NOT perfect. If you want to parse XML, you should use an XML parser.
Do read this post on the subject thoroughly.