fork download
  1. using System;
  2.  
  3. namespace Enum
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. string s = "asdfghj;zxcvb";
  10. var index = s.IndexOf(';');
  11. Console.WriteLine(s.Substring(index -4, 4));
  12. }
  13. }
  14. }
Success #stdin #stdout 0.02s 33856KB
stdin
Standard input is empty
stdout
fghj