I got this line to format a number :
<fmt:formatNumber type="number" pattern="###,#######" value="1234567890" var="test"/>
Above line output 123 4567890 with my current locale (french).
If I use below code :
<c:set var="ref" value="123 4567890"/>
${ref == test}
It return false, why?
First, I thought that test was no a String hence I tried that :
<c:set var="test2" value="${test}"/>
But ${ref == test2} still return false.
 
     
    