How to divaded one number to digits and save every digit in variable

Hi,

How about to use Array, as the following?

arrStr = "456834".Select(Function(c) c.ToString).ToArray

Then

arrStr(0) returns "4"
arrStr(1) returns "5" 
:
:

Regards,