How about this Regex expression
System.Text.RegularExpressions.Regex.Match(yourString,".*(?=\sPhone:)").Value

You can also try with Split expression
Split(YpourString,"Phone")(0)

Regards
Gokul
How about this Regex expression
System.Text.RegularExpressions.Regex.Match(yourString,".*(?=\sPhone:)").Value

You can also try with Split expression
Split(YpourString,"Phone")(0)

Regards
Gokul