using System;
using System.Text.RegularExpressions;
public class Example
{
public static void Main()
{
string pattern = @"^""(\d{1,2})(\/)(\d{2})(\/)(\d{4})(.*)\n(.*)\n(.*\,"")";
string input = @"""8/20/2023"",""SQ *CHRIS- SAL"",""SQ *CHRIS- SAL"",""130.00"",""debit"",""Entertainment"",""CC Apple Card"","",""
""8/20/2023"",""CHEVRON"",""CHEVRON"",""81.79"",""debit"",""Gas & Fuel"",""CC Apple Card"","",""
""8/19/2023"",""DD DOORDASH 855-973-1040 CA
APPLE PAY"",""DD DOORDASH 855-973-1040 CA
APPLE PAY"",""64.38"",""debit"",""Food Delivery"",""CC Discover"","",""
""8/19/2023"",""SP PEACHY K"",""SP PEACHY K"",""65.00"",""debit"",""Restaurants"",""CC Apple Card"","",""
""8/19/2023"",""Cash App"",""Cash App"",""200.00"",""debit"",""Transfer"",""CHECKING"","",""
""8/18/2023"",""DD DOORDASH 855-973-1040 CA
APPLE PAY"",""DD DOORDASH 855-973-1040 CA
APPLE PAY"",""10.15"",""debit"",""Food Delivery"",""CC Discover"","",""
""8/18/2023"",""DD DOORDASH 855-973-1040 CA
APPLE PAY"",""DD DOORDASH 855-973-1040 CA
APPLE PAY"",""45.56"",""debit"",""Food Delivery"",""CC Discover"","",""
""8/18/2023"",""GAS"",""GAS"",""18.69"",""debit"",""Utilities"",""CHECKING CapOne"","",""
";
RegexOptions options = RegexOptions.Multiline;
foreach (Match m in Regex.Matches(input, pattern, options))
{
Console.WriteLine("'{0}' found at index {1}.", m.Value, m.Index);
}
}
}
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for C#, please visit: https://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex(v=vs.110).aspx