Like
"abc123def45", I want to get -> [123, 45] from the string.
I now have the following:
getDecimals :: string - & gt; [EIT] getDecimals xs = [number TTI x | X & lt; -xs, isDigit x]
Only this method is coming back -> [1,2,3,4,5].
How can I do this?
Tnx!