|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: how to keep big integer format?
> I am using xslt to transform xml to xml and want to update > object_id value by adding 1. But the result returns > 4.967039E6 instead of 4967039. > How can I get what I want? > XSLT 1.0 never uses exponential notation on output; XSLT 2.0 uses it by default for floating point numbers outside the range 1e-6 to 1e+6. The simplest way to avoid exponential notation is to use integer arithmetic rather than floating point arithmetic. You're probably using floating point because that's the default for untyped data when you don't have a schema. You can convert to an integer instead by using, for example xs:integer(object_id)+1. - or, of course, by doing schema-aware processing with a schema that describes the type of object_id as xs:integer. Michael Kay http://www.saxonica.com/
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








