I have the following text,
text = "12345678 abcdefg 37394822 gdzdnhqihdzuiew 09089799 78998728 gdjewdwq"
And I want the output be:
12345678 abcdefg
37394822 gdzdnhqihdzuiew
09089799
78998728 gdjewdwq
I tried "re.split("\d{8}", text)", but the result is incorrect. How to get the correct output?