fork(1) download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text.RegularExpressions;
  5.  
  6. public class Test
  7. {
  8. public static void Main()
  9. {
  10. var packageSize = "4/8.75LB";
  11. var result = Regex.Split(packageSize, @"(\d)(?=\D*$)");
  12. foreach (var s in result)
  13. Console.WriteLine(s);
  14. }
  15. }
Success #stdin #stdout 0.06s 29636KB
stdin
Standard input is empty
stdout
4/8.7
5
LB