Not sure if regular expressions are the right approach for this, but here is what I am looking to achieve... within a string composed of sorted digits such as 23412167894125123 I would like to extract all sequences of at least 3 consecutive digits:
- 234
- 6789
- 123
Can this be done with regex? Otherwise what could be a sensible approach?