fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string s = "6.3-full-day-care";
  8. var index = s.IndexOf('-');
  9.  
  10. var price = s.Substring(0, index);
  11. var serviceKey = s.Substring(index + 1);
  12.  
  13. Console.WriteLine(price);
  14. Console.WriteLine(serviceKey);
  15. }
  16. }
Success #stdin #stdout 0.02s 34792KB
stdin
Standard input is empty
stdout
6.3
full-day-care