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.

deceze
  • 510,633
  • 85
  • 743
  • 889
Jojo
  • 71
  • 1
  • 2
  • possible duplicate of [Parsing XML with CDATA with JQuery](http://stackoverflow.com/questions/652159/parsing-xml-with-cdata-with-jquery) – deceze Dec 14 '10 at 09:36

1 Answers1

-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);
Lucas Anschau
  • 91
  • 1
  • 9