Package org.encog.util.csv

Examples of org.encog.util.csv.ParseCSVLine


   * Split a delimited string into columns.
   * @param line THe string to split.
   * @return The string split.
   */
  public static List<String> splitColumns(final String line) {
    ParseCSVLine csvLine = new ParseCSVLine(CSVFormat.EG_FORMAT);
    return csvLine.parse(line);
  }
View Full Code Here

TOP

Related Classes of org.encog.util.csv.ParseCSVLine

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.