All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.pdx.cs410J.core.ParseString Maven / Gradle / Ivy

The newest version!
package edu.pdx.cs410J.core;

import java.util.*;

/**
 * This classes parses strings from the command line using a
 * StringTokenizer.
 */
public class ParseString {

  /**
   * The second String from the command line contains the
   * parsing delimiters.
   */
  public static void main(String[] args) {
    String string = args[0];
    String delimit = args[1];
    StringTokenizer st;
    st = new StringTokenizer(string, delimit);

    while (st.hasMoreTokens()) {
      String token = st.nextToken();
      System.out.println("Token: " + token);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy