In this data:
[‘23 2312 dfr tr 133’,
‘2344 fdeed’,
‘der3212fr342 96’]
I would like a function which would return values where there are a certan number of numbers in a row. It doesn’t matter about spaces, or other text, as long as there are a certain numbers in a row. (No more, no less) For example:
2 numbers in a row:
[‘23’,’’,’96’]
3 numbers in a row:
[‘133’,’’,’342’]
4 numbers in a row:
[‘2312’,’2344’,’3212’]
Thank you