I have a property defined in one of my property files:
<entry key="build" default="0" type="int" operation="+" value="1" />
I read this property using:
<replacefilter token="@build@" property="build_num" />
Once this number gets bigger than 999, the thousands are separated from the rest of the digits by a comma, like this:
1,001
1,562
Is there a way to get rid of that comma? (I use build to generate a file name, and don't really want to see any commas in there).