Where do I find the syntax for the for loop in the variables command.
Say I have a list of chars stored in A and I want to select the first 50 chars from it.
I am having issues finding the syntax for most things in openrpa
Where do I find the syntax for the for loop in the variables command.
Say I have a list of chars stored in A and I want to select the first 50 chars from it.
I am having issues finding the syntax for most things in openrpa
A list of chars, do hoy mean a string?
String has a Substring function, so
a.Substring(0, 50)
Read more here String.Substring Method (System)
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.