hi there,
how to convert String to int in Velocity Template?
i would like to compare String "100" and int 99 in velocity template, but there are always display "false"
#set ($str = "100")
#if ($str > 99)
true
#else
false
#end
i tried to using Inter.parseInt($str) > 99
many thz