fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. var text = "Hello My name is B and I love soccer. I live in California.";
  8. int index = text.IndexOf(".") + 1;
  9. String result = text;
  10. if(index > 0)
  11. result = text.Substring(0, index);
  12. Console.Write(result);
  13. }
  14. }
Success #stdin #stdout 0.04s 37168KB
stdin
Standard input is empty
stdout
Hello My name is B and I love soccer.