Hi everybody,
I'm first time on that forum. I have a question.
Let's say I have an array
String[] msgs;
System.out.println("posx1 = " + msgs[0]);
System.out.println("posx2 = " + msgs[1]);
I got the following message:
MSG(TAG): tagid=10, posx=83, posy=55
MSG(TAG): tagid=11, posx=22, posy=12
How can I get just the number for posx and posy from that array? Any idea?