var1 = "0123456789"
I need to store this string into another string variables by breaking it into 3 parts like
par1 = '0123'
par2 = '4567'
par3 ='89
Purpose: I have got a dataset I need to break the each record and store it in different variables.