Class CsvLineParser

java.lang.Object
org.drools.decisiontable.parser.csv.CsvLineParser

public class CsvLineParser extends Object
A simple parser for CSV (Comma-Separated Values) format. Supports quoted fields and escaped quotes.
  • Constructor Details

    • CsvLineParser

      public CsvLineParser()
  • Method Details

    • parse

      public List<String> parse(CharSequence input)
      Parses a line of CSV text into a list of fields.
      Parameters:
      input - The CSV line to parse
      Returns:
      List of fields extracted from the CSV line