Why does #isValid("integer","1,5")# output YES? I expected it to output NO like #isValid("integer","1.5")# does.
I'm going to validate with <CFIF isvalid("integer","1,5") AND isnumeric("1,5")> ...
|
Why does I'm going to validate with |
|||||
|
|
Adobe is aware of this, but...
https://bugbase.adobe.com/index.cfm?event=bug&id=3169196 TBH I'm a little embarrassed to be using a language that can't even validate integer correctly. |
|||||
|
|
Just to expand on the answer here and explain what's actually going on. See this related bug, a summary of the detail of which is that CF will interpret " Adobe copped-out of fixing this issue to, citing the same excuse that it would break backwards compat. Nonsense it would. Anyway... because a date can be cast to an integer in CF, CF thinks "1,5" is a legit integer, because it's actually a date. How embrrassing it is - as a dedicated CF developer - to have to offer you than explanation. Sorry. |
|||||||||||||||||
|
|
If you want to make absolutely sure you have an Integer, you could use Java Integer methods.
The parseInt() method throws when it is given anything that cannot be interpreted as an Integer. This includes |
|||||||||||||
|