-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Labels
bugSomething isn't workingSomething isn't workingdata-processingData processing issuesData processing issuesjavaJava code issuesJava code issuesuser-storyUser story format issueUser story format issue
Description
As a developer
I want proper CSV parsing that handles quoted fields
So that CSV files are parsed correctly
Current Behavior
Naive split on commas breaks fields like "Smith, John".
Location: src/java/CSVHandler.java line 14
Expected Behavior
Handle CSV quoting rules properly.
Acceptance Criteria
- Use proper CSV parsing library (OpenCSV)
- Handle quoted fields with commas
- Handle escaped quotes
- Add test with complex CSV
Example Issue
name,address
"Smith, John","123 Main St"Gets split incorrectly into 3 fields instead of 2.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingdata-processingData processing issuesData processing issuesjavaJava code issuesJava code issuesuser-storyUser story format issueUser story format issue