Hi to all...
In Visual basic 6 , to extract single chr from a string I use:
dim string as string
dim n as integer
string ="qwertyuio"
dim extrac as string
for n = 0 to (len(string)-1)
extract=mid(string,n,1)
next
in B4A....I'm not able to write a similar code, ghive me error!
I've searched some like this in forum but I've not found any.
Some one use CharAt ,other Chartostring...but no one works in B4A ambient
Is ther some one that can suggest me an example for android (B4A)?
thank's in advance
mario