luke
01/22/2020, 4:07 AM1914 1 5.9 0.9 --- 48.3 ---
What I have so far: ([\d]+)\.*([\s]+)
I just want to extract all the non-whitespace values into an Array.Ruckus
01/22/2020, 4:45 AMluke
01/22/2020, 5:38 AM.split(" ")
doesnt help.Ruckus
01/22/2020, 5:49 AM.split()
), it will do what you want. If not, you could just use \s+
as your delimiter.luke
01/22/2020, 5:51 AMRegex
class.Ruckus
01/22/2020, 6:31 AM