No one's given a "magical" answer so I shall give another "slog through it" sort of answer. Mind you, it's 2021 now, so there's better to be had and I'll address that as well, but variations that work in versions available in 2013 come first.
So, if doing a full import, one can use the Import Wizard but it has unfortunate results as it won't take delimiters of two or more characters. So "Exxon Mobile" comes in as two columns instead of one. I believe Power Query was available in 2013, under one name or another, so that'd be the way to proceed with the basic import. It would've let one overcome the single character delimiter problems without a lot of hand work (after the first time in PQ, then automatically). And I'm sure it would have let one rearrange the columns even then, so...
In any case, let's consider the data from the question is IN Excel already, sitting there needing splitting and arranging.
How to split it? Since Text to Columns ("T2C") is just the Import Wizard entered at a AFTER the point at which the Import Wizard would take a file to import, that won't work any better. One COULD run it and hand shift, or formula shift, the out of column materials, but that'd suck, a lot.
So, tear it apart with formulas. Nothing fancy being proposed by me here, just a very simple, "get it into the columns it needs to be in" kind of formula set, and then quickly dealing with the arranging.
Four columns are desired and as mentioned in the first answer, five spaces is the delimiter string. This approach works as follows:
Find the start position of the first of these delimiter strings. Substract 1 from it and you have the last position of the desired first string. (So if FIND() reports "2", then the last character in the first piece of the line's data string ends in that position. (I use MID() in the formula because I prefer it to LEFT() or RIGHT() unless they are demanded by the need. Personal preference, I find it is more extensible that way.)
=MID(A1,1,FIND(" ",A1)-1)
Next, "subtract that from the original string" in A1. "Subtraction" from a string is done via SUBSTITUTE() replacing the material with a blank string (""). So:
=MID(SUBSTITUTE(A1,I1&" ",""),1,FIND(" ",SUBSTITUTE(A1,I1&" ",""))-1)
which does the "subtraction" yielding a smaller string that starts with the next desired value, then uses the method in Step 1 to get that value.
"Rinse and repeat" as the shampoo bottles say. Do the same for each other desired piece until the last one. In this case, just one more! For each, you must add to the string being substituted away. That string could then get pretty long, but that's barely daunting and no difficulty at all.
=MID(SUBSTITUTE(A1,I1&" "&H1&" ",""),1,FIND(" ",SUBSTITUTE(A1,I1&" "&H1&" ",""))-1)
See how the I1&" "&H1&" " string is growing?
So finally, one just needs to "subtract off" the full string of things split out already and their intervening delimiter strings. Since there is no more to find, just that "subtraction" (SUBSTITUTE()) is needed, no further pieces need found by `MID().
=SUBSTITUTE(A1,I1&" "&H1&" "&G1&" ","")
Now you have the pieces but not in "Right to left" order. You COULD have set up these formulas in, say, columns F through I, but starting in column I and moving left. But it's not the natural way for your thinking to run, so, uncomfortable in the doing, but more importantly, copying a formula to the next column doesn't necessarily adjust your cell references in a desirable manner. So I prefer still working left to right in the "natural" manner the FEW times I have something like this come up. Even though, in this case, I copied formulas from inside the Formula Editor, not cell to cell, so it might not have mattered at all. Just liked the "natural" feel.
After creating the formulas like so, just insert a cell to their left and use Drag and Drop to rearrange them in the desired (couldn't type "proper" there... "natural" and all that) order. Done. Copy the set down as many rows as needed and completely done.
Ordinarily, I like using INDEX() to reverse column order as it automates the process letting the formulas stand on their own, no hand work intervention required, but that'd require a further set of cells to be used since these formulas are independent in the sense that one cannot easily cite them as a range for INDEX(). So, living without that, and using Drag and Drop. It's only a teensy extra step anyway.
In 2021, one could simply use the FILTERXML() trick (SUBSTITUTE() for the delimiter strings the new delimiter string </Element><Element> and prepend and append the opener tags and ending tags (use "Group" as the outer tag) to get a string FILTERXML() can use). That gives you an array (a SPILL array) that you can feed directly into INDEX() and use it to reverse the columns in the array. So no Drag and Drop at the end, just let the formulas stand on their own. And since it all occurs in the single cell, spilling rightward, you can set INDEX/FILTERXML" SPILL` DOWNWARDS to take care of what "copy downward" used to be needed for. One formula to replace them all. (Sorry JRRT.)
(Now, if one wanted to reverse a string character by character, not piece by piece, that'd been a different thing yet. From the title, I thought that was the desire, actually. Well, read and learn, eh?)