How can I extract a string enclosed in CDATA tag using php?
For instance I have
$str = "<![CDATA[this is my text]]>";
Using regex how can I extract the string “this is my 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.
You can use this regex:
/<!\[CDATA\[(.*?)\]\]>/:The regex looks for
<![CDATA[followed by any characters until the first]]>is encountered.