I have the following string:
E E E 11 5 E 3 4
I need to be able to strip all "E" characters that go before the numbers. So that the output would be like this:
11 5 E 3 4
The number of first "E" can be different, so it can be either "E E" or "E E E E" etc. How can I do it with SED? If possible, with alternative shell utils.