Im having some problems pulling numbers(54878, 45666, 23331,003455) from a list of strings, I have a list of strings like the following (about 2700+):
["011 54878 20000 0.00", " 45666 134 2.75", " 23331 0 0.00", "015 00345 -11110 2.75"]
every new line the numbers are different but kinda stay at the same length, the only sure consistent is the space between the numbers...
im trying to pull only the second column numbers (54878,45666,23331,00345) , is there a way to set a regex code to pull a number only after certain number of white space, then start pulling the number untill the first next space?
Thank you(: !