Hi,
I would like to separate example below into 2 columns - First column only with numbers and other with rest:
| Input |
| 14 Norbury Street |
| Fairwood drive 22 |
| Althostrasse 5 |
| Expected Output 1 | Expected output 2 |
| 14 | Norbury Street |
| 22 | Fairwood drive |
| 5 | Althostrasse |
I know it can be done using RegEX but tried few times and I can't get it right .
Thank in advance for any help and clues how to solve it!