Possible Duplicate:
string split in java
I have a string:
"jack#james#joahn#logan#"
I know there is a method of the String
class that can seperate it on the symbol #
. So it will return to me
"jack" "james" "joahn" "logan"
What is the name of this method?