Skip to content

Instantly share code, notes, and snippets.

View Estecka's full-sized avatar

Estecka

View GitHub Profile
@Estecka
Estecka / AngryCSVParser.cs
Last active September 2, 2020 14:28
AngryCSVparser.cs
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 = '\\';