import java.util.*;
public class CodeGrepper {
public static void main(String[] args) {
String strToDecompose = "Some sample text";
// Use Scanner class to decompose String
Scanner scan = new Scanner(strToDecompose);
// hasNext(): return trues if there are more words
// next(): retrieves the next word
while(scan.hasNext())
System.out.print(scan.next() + "/"); // Some/sample/text/
scan.close();
System.out.println();
// Using StringTokenizer to decompose String
StringTokenizer st = new StringTokenizer(strToDecompose);
// hasMoreTokens(): return true if there are more words
// nextToken(): retrieves the next word
while(st.hasMoreTokens())
System.out.print(st.nextToken() + "/"); // Some/sample/text/
}
}
String[] words = string.split("s+");