I got a array filled with strings.
What I want to do is remove the first three characters (numbers) of every string in the array.
The strings look like this:
010Boten
020Beelden
030Water
And the result should look like this
Boten
Beelden
Water
I think this should be very easy, but I can't find right commando's to get this working.
Arjen.