fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string s = "Summary Symptoms Read More Summary A tarsal coalition is a bridge of bone that forms in the foot in late adolescence. As the tarsal coalition progresses from a fibrous...";
  8. var array = s.Split(new string[] {"Summary "}, StringSplitOptions.RemoveEmptyEntries);
  9. Console.WriteLine(array[1]);
  10. }
  11. }
Success #stdin #stdout 0.04s 33984KB
stdin
Standard input is empty
stdout
A tarsal coalition is a bridge of bone that forms in the foot in late adolescence. As the tarsal coalition progresses from a fibrous...