Question: With Java, please write code which tokenizes the given String into tokens, separated by special characters. You are free to use split or the StringTokenizer.
With Java, please write code which tokenizes the given String into tokens, separated by special characters. You are free to use split or the StringTokenizer. The delimiters are the @, the #, and the -. Print out each token to the standard output.
public void printTokens(){
String theString = parker@raytheon-newjob@testExample#hashmail";
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
