Regular expressions can help you here. Here's how you could retrieve the name, for the address it would be similar:
Regex.Match(text, @"Name: *(?<name>[^ ]+)").Groups["name"].Value
Regular expressions can help you here. Here's how you could retrieve the name, for the address it would be similar:
Regex.Match(text, @"Name: *(?<name>[^ ]+)").Groups["name"].Value