using System.Text.RegularExpressions;
using System.Collections.Generic;
public static void Main()
string test = "\"Erita \"\"Cuna,ku\"\"\",\"0,99\",\"05/10/2024 23:00:28\",\"06/10/2024 00:00:00\",DATA,\"UP_DOWN\"";
var result = ParseCsvRow(test, ',');
foreach(var item in result){
public static List<string> ParseCsvRow2(string row, char separator)
List<string> values = new List<string>();
bool insideQuotes = false;
StringBuilder currentValue = new StringBuilder();
for (int i = 0; i < row.Length; i++)
char currentChar = row[i];
if (insideQuotes && i + 1 < row.Length && row[i + 1] == '\"')
currentValue.Append('\"');
insideQuotes = !insideQuotes;
else if (currentChar == separator && !insideQuotes)
values.Add(currentValue.ToString().Trim());
currentValue.Append(currentChar);
if (currentValue.Length > 0)
values.Add(currentValue.ToString().Trim());
public static List<string> ParseCsvRow(string row, char separator)
List<string> values = new List<string>();
bool insideQuotes = false;
string currentValue = "";
for (int i = 0; i < row.Length; i++)
char currentChar = row[i];
if (insideQuotes && i + 1 < row.Length && row[i + 1] == '\"')
insideQuotes = !insideQuotes;
else if (currentChar == separator && !insideQuotes)
values.Add(currentValue.ToString());
currentValue += currentChar;
values.Add(currentValue.ToString());
private static string[] ParseRow2(string row, char separator)
string pattern = "(?:" + separator + "|^)(?:\"\"([^\"\"]*)\"\"|([^\"\""+separator+"]*)|(?="+separator+"))";
var regEx = new Regex(pattern, RegexOptions.IgnoreCase | RegexOptions.Multiline);
var matches = regEx.Matches(row);
var result = new List<string>();
Console.WriteLine("Match match in matches");
foreach (Match match in matches)
Console.WriteLine("Gr0 => " + match.Groups[0].Value);
Console.WriteLine("Gr1 => " + match.Groups[1].Value);
Console.WriteLine("Gr2 => " + match.Groups[2].Value);
Console.WriteLine("=======================");
if (match.Groups[1].Success)
result.Add(match.Groups[1].Value);
result.Add(match.Groups[2].Value.Trim());
Console.WriteLine("END: Match match in matches");
private static string[] ParseRow(string row, char separator)
row = row.Trim('"').Replace("\"\"", "\"");
string pattern = "(?:" + separator + "|^)(?:\"\"([^\"\"]*)\"\"|([^\"\""+separator+"]*)|(?="+separator+"))";
var regEx = new Regex(pattern, RegexOptions.IgnoreCase | RegexOptions.Multiline);
var matches = regEx.Matches(row);
var result = new List<string>();
Console.WriteLine("Match match in matches");
foreach (Match match in matches)
Console.WriteLine("Gr0 => " + match.Groups[0].Value);
Console.WriteLine("Gr1 => " + match.Groups[1].Value);
Console.WriteLine("Gr2 => " + match.Groups[2].Value);
Console.WriteLine("=======================");
if (match.Groups[1].Success)
result.Add(match.Groups[1].Value);
result.Add(match.Groups[2].Value.Trim());
Console.WriteLine("END: Match match in matches");