I have a single string column with value sample as "abcdefghijklmnop", i need this value to be split into multiple rows with each row contains 5 letters.
Expecting Output;
Result:
abcde
fghij
klmno
p
Tried using generate rows but couldn't find the solve