[xsl] Re: Why does my XSLT produce a Warning message with never-executed code that divides a blank by 10?

Subject: [xsl] Re: Why does my XSLT produce a Warning message with never-executed code that divides a blank by 10?
From: "Roger L Costello costello@xxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Sun, 31 Mar 2024 11:14:12 -0000
Thank you everyone for your excellent responses.

I decided to go with Liam's solution:

if (normalize-space($test) castable as xs:integer)
then xs:integer(normalize-space($test)) div 10
else ()

That works great and no Warning messages are produced.

/Roger

Current Thread