Extracting variables from .txt file

Hi @CamiCat,
use Read Text File activity to get the string value.(strvalue)
split the string value using Environment.NewLine
strvalue.Split(Environment.NewLine.ToArray, StringSplitOptions.RemoveEmptyEntries)
using build data table activity to create the table (variable,value)

assign the odd the values into the variable column even values to values field.

so you will get the datatable from here you can get the value.
Regards,
Arivu

1 Like