Regex pattern to extract address from string

HI @MasterOfLogic

How about this Regex expression

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

image

You can also try with Split expression

Split(YpourString,"Phone")(0)

image

Regards
Gokul