// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Collections.ObjectModel; namespace Microsoft.PowerShell.Commands { /// /// This class is used to parse CSV text. /// internal sealed class CSVHelper { internal CSVHelper(char delimiter) { Delimiter = delimiter; } /// /// Gets or sets the delimiter that separates the values. /// internal char Delimiter { get; } = ','; /// /// Parse a CSV string. /// /// /// String to be parsed. /// internal Collection ParseCsv(string csv) { Collection result = new(); string tempString = string.Empty; csv = csv.Trim(); if (csv.Length == 0 || csv[0] == '#') { return result; } bool inQuote = false; for (int i = 0; i < csv.Length; i++) { char c = csv[i]; if (c == Delimiter) { if (!inQuote) { result.Add(tempString); tempString = string.Empty; } else { tempString += c; } } else { switch (c) { case '"': if (inQuote) { // If we are at the end of the string or the end of the segment, create a new value // Otherwise we have an error if (i == csv.Length - 1) { result.Add(tempString); tempString = string.Empty; inQuote = false; break; } if (csv[i + 1] == Delimiter) { result.Add(tempString); tempString = string.Empty; inQuote = false; i++; } else if (csv[i + 1] == '"') { tempString += '"'; i++; } else { inQuote = false; } } else { inQuote = true; } break; default: tempString += c; break; } } } if (tempString.Length > 0) { result.Add(tempString); } return result; } } }