using System.Text.RegularExpressions;
private static readonly Regex s_atLocationRegex = new Regex("(?<=^At ).*?(?=\\. )");
private static readonly Regex s_remoteLocationRegex = new Regex("^Remote?(?=\\. )");
public static void Main()
for(int i = 0; i < 1000; i++)
TestNotes("At DMC. At DCI. This is a test note 1. ");
TestNotes("Remote. This is a test note 2. ");
TestNotes("At Wrigley. This is a test note 3. Remote. ");
private static void TestNotes(string notes)
var result = DecomposeNotesField(notes);
Console.WriteLine("Location: {0},\tnotes: {1}", result?.Location, result?.NotesWithoutLocation);
private static NotesLocationRegexResult? DecomposeNotesField(string? notes)
var result = s_atLocationRegex.Match(notes);
return new NotesLocationRegexResult(
notes[(result.Value.Length + 6)..]
result = s_remoteLocationRegex.Match(notes);
return new NotesLocationRegexResult(
private record NotesLocationRegexResult(string Location, string NotesWithoutLocation);