Hi, i am extracting a text from an application using get text activity in the form of string in the below format
example:
EGM
Whole Structure
Load Model
Primary load
I need to convert this string into a data table. The text will vary every time.
dtExtractedText = (From line In YourStringVariable.Split({Environment.NewLine}, StringSplitOptions.RemoveEmptyEntries)
Select dtExtractedText.Rows.Add(line)).CopyToDataTable()