I have a data file that contains numbers which are 8-digit SKUs followed by quantities. The 2-pieces of data are separated by a + I want to use regex to place the SKU and quantities on a line by themselves so I can examine the data for errors.
Example: Data I get is - 206120651+206132791+206120651+
I want it to display as
20612065 1 20613279 1 20612065 1
Using carriage return to display each SKU and quantity on a separate line.