How separate a string from others

Hi all,I'm writing a program need to choose a specific string out of input stringsAn the specific string's diference from others is it begin with a numberSo is there a possible way to do it thx....
[234 byte] By [majiaa] at [2007-11-27 1:56:40]
# 1
String has a method charAt() which you can use to get a character from the String (use charAt(0) for the first character).Character has a method isDigit() that returns true or false.
TimRyanNZa at 2007-7-12 1:31:19 > top of Java-index,Java Essentials,New To Java...