fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string str = ";1234.jpg;1356.jpg;7890.jpg";
  8. string[] array = str.Split(new char[] {';'}, StringSplitOptions.RemoveEmptyEntries);
  9.  
  10. string a = array[0];
  11. string b = array[1];
  12. string c = array[2];
  13.  
  14. Console.WriteLine(a);
  15. Console.WriteLine(b);
  16. Console.WriteLine(c);
  17. }
  18. }
Success #stdin #stdout 0.02s 33808KB
stdin
Standard input is empty
stdout
1234.jpg
1356.jpg
7890.jpg