fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. var s = "KL10124 Traitor #2 - +XX-+0.25 - More Stuff";
  8. var h = s.Split('-');
  9. Console.WriteLine(h[2]);
  10. var h2 = h[2].Substring(1,h[2].Length - 2);
  11. var d = Convert.ToDouble(h2);
  12. Console.WriteLine(d);
  13. }
  14. }
Success #stdin #stdout 0.03s 36968KB
stdin
Standard input is empty
stdout
+0.25 
0.25