I am having a phone number in my xml in this format like (515) 123456 and I need to have it like simple like 515123456. I used below code and it's throwing me an error
any idea how this can be done ?
<xsl:value-of
select="replace(replace(Mobile1, ') ', ''), '(', '')"
/>