fork(3) download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var text = "SUBTOTAL 34.37 TAX TOTAL 37.43";
  9. var idx = Regex.Match(text, @"\bTOTAL\b").Index;
  10. Console.WriteLine(idx);
  11. }
  12. }
Success #stdin #stdout 0.06s 21176KB
stdin
Standard input is empty
stdout
19