|
Subject: [xsl] Does Java Script Support space(nbsp) replacement From: "Mohammed Ashfaq S" <Mohammed.S@xxxxxxxxxxx> Date: Fri, 27 Aug 2004 18:02:56 +0530 |
Hi All ,
I have this func in Example.xsl file
function replaceString() {
regX = new RegExp("\@@@","g") ;
document.form1.Detail.value=document.form1.Detail.value.replace(regX,"\n");
// Here i have to Replace the Blank Space in the document
var _blankspace=' '; // I have used #160 too... still did not work
var _nospace='';
regX = new RegExp(_blankspace,"g");
document.form1.Detail.value=document.form1.Detail.value.replace(regX,
_nospace);
//
regX = new RegExp('@lt;',"g");
document.form1.Detail.value.replace(regX,'<');
regX = new RegExp('@gt;',"g");
document.form1.Detail.value.replace(regX,'>');
}
Can anyone tell me how do i get this working or Have i missed some basics.
Thanks in advice
Ashfaq
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| Re: [xsl] xslt 2, grouping and more, David Carlisle | Thread | [xsl] RE: Does Java Script Support , Mohammed Ashfaq S |
| Re: [xsl] xslt 2, grouping and more, David Carlisle | Date | [xsl] RE: Does Java Script Support , Mohammed Ashfaq S |
| Month |