I have an XML element that resembles the following;
<AccountNumber>123456 7</AccountNumber>
The value within the AccountNumber tag contains a space between the numbers (the 6 and 7 in the case above). I want to be able to use XSL to replace this whitespace with %20 so that I can place the contents of this tag into the URL and it be consistent in both Netscape and IE.
Does anyone know how this replace functionality can be done in XSL. I would prefer to do this in XSL rather than within a component, ASP or the like.
<AccountNumber>123456 7</AccountNumber>
The value within the AccountNumber tag contains a space between the numbers (the 6 and 7 in the case above). I want to be able to use XSL to replace this whitespace with %20 so that I can place the contents of this tag into the URL and it be consistent in both Netscape and IE.
Does anyone know how this replace functionality can be done in XSL. I would prefer to do this in XSL rather than within a component, ASP or the like.