Need to take a string in vb and split it. Also need to look through the two returned values and return the value which contains "domain1.com". Pipelines are the delimiter.
txtEmailFrom.Text = "[email protected]|[email protected]"
Dim brokened() As String
brokened = Split(txtEmailFrom.Text, "|")
Dont know where to go from here...