I want to convert a string value in xslt to an integer value. I am using xslt 1.0, so i can\'t use those functions supported in xslt 2.0. Please help.
XSLT 1.0 does not have an integer data type, only double. You can use number() to convert a string to a number.