tags:

views:

2328

answers:

2

Hi i want to conver a string value in xslt to a integer value.I am using xslt 1.0 so i can't use those functions supported in xslt 2.0 . Please help .

+2  A: 

XSLT 1.0 does not have an integer data type, only double. You can use number() to convert a string to a number.

jelovirt
A: 

how about in XSLT 2.0. I wanna convert a string to a number. BUt I don't know which function?

@user402802: Best practice is to ask your questions separately.
Alejandro