Hello Gauss,
For the given string, the following outputs the two numbers separated by a space in the one cell with your string in A.
=LEFT(RIGHT(A1,LEN(A1) - FIND("233",A1,FIND("233",A1))+1),12)&" "&LEFT(RIGHT(A1,LEN(A1) - FIND("233",A1,FIND("233",A1) + 12)+1),12)
Obviously, if you want to be able to change the search number sequence, you could replace "233" with a cell reference and put the search sequence in that cell.
Regards
Harry