I need a small help with regex matching “Achens Gerage Portsworth”; “Achens Gerage Northen”;
In the first and second words are always constant, 3rd word is always change. So, I want to match the
system.Text.RegularExpressions.Regex.Match(EntirePDF,“(?<=Achens Gerage)”).Tostring
Result: Achens Gerage Portsworth (I want end result should be like ).
I just want to match with 1st and 2 nd word and extract the 3rd word, and in the result 3 words are combined together.
Thanks in advance