For example I have a string like "0002187433" from that @0002187433 I need to remove first 3 digits by using XSLT
and output I should be getting like "2187433".
I have tried like <xsl:value-of select="substring(0002187433,3,string-length(0002187433)-7)" disable-output-escaping="yes"/>
but it is not working.