This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: find and replace in javascript with XMLDOM object -- SOLVED


Tim,

Thanks! That did the trick!

Bryan


--- "Chen, Gin" <Gin_Chen@tvratings.com> wrote:
> This is a javascript error. Replace only replaces
> the first occurance of it.
> Try this instead:
> 
> ..
> var htmloutput =  newxmlDoc.transformNode(newxslDoc)
> 
> var re = /&lt;/ //reg expression to look for
> 
> while( htmloutput.search( re ) != -1 )
>    htmloutput = htmloutput.replace( re, "<");
> 
> document.write(htmloutput); 
> ...
> 
> -Tim
> 
> -----Original Message-----
> From: Bryan Tarantina
> [mailto:bryantarantina@yahoo.com]
> Sent: Monday, July 08, 2002 2:03 PM
> To: xsl-list@lists.mulberrytech.com
> Subject: [xsl] find and replace in javascript with
> XMLDOM object
> 
> 
> Hello,
> 
> 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(/&lt;/, "<");
> document.write(htmlout); 
> 
> this works, but only for the first line... how can I
> find and replace *every* occurrence?
> 
> Bryan
> 
> __________________________________________________
> Do You Yahoo!?
> Sign up for SBC Yahoo! Dial - First Month Free
> http://sbc.yahoo.com
> 
>  XSL-List info and archive: 
> http://www.mulberrytech.com/xsl/xsl-list
> 
>  XSL-List info and archive: 
> http://www.mulberrytech.com/xsl/xsl-list
> 


__________________________________________________
Do You Yahoo!?
Sign up for SBC Yahoo! Dial - First Month Free
http://sbc.yahoo.com

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]