I wish to remove only the left "0" in this string
(can't find how to do it)
a="0540123456"
Here you go ...
a="540123456"
I'll get my coat.
if you want the first occurance of "0" (wherever it is) then:
B4X:for i=0 to a.length-1 if a.substring2(i,i+1)="0" then a=a.substring2(0,i) & a.substring(i+1) exit end if next