i think we can use split string like this
if text is stored in a variable of type string
in_text_variable = "General Information
Name
rody
Identification Type"
Then we can do like, where out_stringarray is a variable of type string array out_stringarray = in_text_variable.Split(Environment.Newline.ToArray(),StringSplitOptions.RemoveEmptyEntries)
and you can get the value of Name like this where out_namevalue is a variable of string out_namevalue = out_stringarray((out_stringarray.indexof(“Name”))+1).ToSting
Cheers