I guess I was surprised when the result showed up with a comma in it:
B4X:
Result: 1,234
I just wanted the numbers (but a minimum of four of them hence the smartstring format). Is there a simple way to exclude the comma from the smartstring? Or will I have to do this:
B4X:
var = "1234"
var = $"$4.0{var}"$
var = var.Replace(",","")
Log(var)