I want split the following biginteger into digits and put it in an array.
BigInteger = 123456789123456789123456789123456789
array[]={1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,}
How can I do this?Thank you.I searched it but couldn't find a better answer.