This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Text.RegularExpressions; | |
| namespace Estecka { | |
| /// <summary> | |
| /// A parser for those CSV with quoted newlines that tend to mess up other parsers. | |
| /// </summary> | |
| static public class AngryCSVParser { | |
| static char escapeCharacter = '\\'; |
NewerOlder