Dim I As Int=-1
Log(NumberFormat(I,2,2))
I=-100
Log(NumberFormat(I,2,2))
Dim D As Double=-1.5
Log(NumberFormat(D,2,2))
D=-100.5
Log(NumberFormat(D,2,2))
gives this output
B4X:
0-1.00
0-100.00
0-1.50
0-100.50
I would like if the minus was the first character.
PS.
The IDE helps to write smart strings, but then it states that it is not supported.
Does anyone known if it will be supported in the future?