How to set space in numbers
Hello!
Is it possible in cache to divide numbers with spaces. For example number 12500 divide to 12 500?
Thank you!
Hello!
Is it possible in cache to divide numbers with spaces. For example number 12500 divide to 12 500?
Thank you!
By default in english locale group separator is comma
Thank you Dmitry!
Thanks Dmitry it was helpful to me as well.
$translate would be better here
To remove everything except numbers use $zstrip:
Hi,
No, you will have to find a way to remove the spaces, for example:
USER>Set ValueA = 12500
USER>Set ValueB = "12 500"
USER>Write ValueA/($Replace(ValueB," ",""))
1