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

Hello @mironb

Welcome to UiPath Community…!

You can do as below.

strVar is a string variable

strVar.ToCharArray() - converts string to characters

charArray is a string variable

image

Untitled

Thanks