|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: find and replace in javascript with XMLDOM object
[Bryan Tarantina] > Hopefully this will be a very simple answer. I have a > javascript that takes an XML and an XSL document and > transforms them into a variable. > > var htmloutput = newxmlDoc.transformNode(newxslDoc) > > that done, I want to search the htmloutput variable > for a string and replace: > > var htmlout = htmloutput.replace(/</, "<"); > document.write(htmlout); > > this works, but only for the first line... how can I > find and replace *every* occurrence? > You should find some less bizarre way to proceed. But for your inmmediate javascript question: var htmlout = htmloutput.replace(/</g, "<"); The "g" makes hte match global. Cheers, Tom P XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








