How can I parse everything after the colons of these main categories? I was considering to read character by character and stop at the end of the new line - which leads me to my next question. How do I determine when I am at a new line? I come from a ‘C’ background so I’m used to just checking if string = ‘\n’ then … to check but I am not sure how to check in uipath/vb.
String.split variable will create separate sub strings and will store it in a variable of array of strings.
Take an array of string variable as “aTest”. Assign it the value of string.split(“:”)
Then you can get the values of right hand by calling “aTest(1).ToString”,“aTest(3).ToString” & “aTest(5).ToString”.