fork(1) download
  1. using System;
  2. using System.Linq;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. string s = @"C:\files\team\business\dev\Source\systems\extension\destination\1.0.1.1\";
  9. string[] array = s.Split('\\');
  10. Console.WriteLine(array[array.Length - 2]);
  11. }
  12. }
Success #stdin #stdout 0.02s 33864KB
stdin
Standard input is empty
stdout
1.0.1.1