Basic String .split regex question

code]String theString = "me|noob";String[] stringArray = theString.split("|");[[/code]however, this doesnt seem to work.. i also tried /p| and /p{|} :(thanks :)
[202 byte] By [Aldricha] at [2007-11-26 19:24:19]
# 1
String theString = "me|noob";String[] stringArray = theString.split("\\|");
quittea at 2007-7-9 21:46:50 > top of Java-index,Java Essentials,Java Programming...
# 2
thank you sir :)
Aldricha at 2007-7-9 21:46:50 > top of Java-index,Java Essentials,Java Programming...