Hello, can someone help me break this line of data according to this amount of digits?
Line of data to be broken into columns:
SWAP 1001424B0161785201837120370900000000011032510600000000010551058120240514 000056830300
DIGITS: 5, 1, 4, 11, 2, 10, 10, 8, 10, 8, 8, 8, 14, 2, 2
I've tried using regex but it keeps skipping the "SWAP " data at the beginning and as a result, all other data is arranged incorrectly.
the regex formula I'm using:
(\d{5})(\d{1})(\d{4})(\d{11})(\d{2})(\d{10})(\d{10})(\d{8})(\d{10})(\d{8})(\d{8})(\d{8})(\d{14})(\d{2})(\d{2})
Thanks!