how to read a line, take action after it’s completed, go to the next line??
Split the text you have with environment.Newline character and store in an array. Then loop through the array so that you can get individual lines @BrunoAmorim17
what function do I use?
If your text is stored in a variable text (assume), then declare a new variable of type string array
and use assign activity as
stringArray = text.split(Environment.NewLine.ToCharArray)
1 Like
You don’t need to assign any value to it as default @BrunoAmorim17