Extracting content from <![CDATA []]>
Asked Answered
C

1

7

I am having a string like:

"<![CDATA [Lorem ipsum dolor sit amet, <a href="http://www.google.com">consectetur</a> siptum. adipiscing elit. Phasellus pulvinar hendrerit malesuada. Mauris eget ante nulla. Suspendisse tempus lorem id.]]>"

using jquery I need to extract the entire content which is inside the <![CDATA []]>. consider the entire data to be stored in a string variable. Please help me with this.

Circumcision answered 14/12, 2010 at 9:18 Comment(1)
possible duplicate of Parsing XML with CDATA with JQueryMetallography
P
-1

You can do this with pure javascript, using substring:

var cDataString = "<![CDATA [Lorem ipsum dolor sit amet, <a href=\"http://www.google.com\">consectetur</a> siptum. adipiscing elit. Phasellus pulvinar hendrerit malesuada. Mauris eget ante nulla. Suspendisse tempus lorem id.]]>";
cDataString = cDataString.substring(0, (cDataString.length - 3)); // remove ]]>
cDataString = cDataString.substring(10, (cDataString.length)); // remove <![CDATA [
alert(cDataString);
Permanent answered 26/11, 2018 at 18:35 Comment(1)
This does not address the question.Grounds

© 2022 - 2024 — McMap. All rights reserved.