using System.Text.RegularExpressions;
int F(string s) => Regex.Match(s, "(?i)(?<=three.*two.*one.*g)o").Index;
Console.WriteLine(F("ThreeTwoOneGo"));
Console.WriteLine(F("There are three of you here; after this round there will be two; but only one of you will go shop for up to $20,000."));