Purpose
Add leading zeros to a string, e.g. a customer number

Solution

Set V[x] "9200071" // example

// add leading zeros, length 10
Set
V[x](1-10) "0000000000&V[x]" -alignRight
 

Components
InputAssistant