fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string line = "123 Example Street Apt 1 City State, Zip";
  8. int aptStartIndex = line.ToLower().IndexOf(" apt ");
  9. int aptEndIndex = line.ToLower().IndexOf(" ", aptStartIndex + 5);
  10. line = line.Substring(0, aptStartIndex) + line.Substring(aptEndIndex);
  11.  
  12. Console.WriteLine(line);
  13. }
  14. }
Success #stdin #stdout 0.04s 34776KB
stdin
Standard input is empty
stdout
123 Example Street City State, Zip