CountStr
Posted: Sun Sep 25, 2022 1:49 pm
Code: Select all
Local number = 123556.56
DebugPrint(number)
n = CountStr(number,".")
DebugPrint(n)
n = CountStr(number,'.')
DebugPrint(n)
Code: Select all
123556.56
1
0
Both Count are expected to be 1.
Tested with MorphOS 3.17 and Hollywood 9.1