I have a string that can take on severl different variations, but I think
that I should to use regual expressions to match it.
How would I write an expression that would match all words (that have a
first letter caps) preceeding a key word.
Samples....
in the Park Woods subdivision (I want Park Woods)
go to Pleasant Hills subdivision (I want Pleasant Hills)
drive through Brightwater subdivision (I want Brightwater)
As you can see, I need to get the subdivision name. I tried
"([A-Z][a-z]+ ){1,} *subdivision"
but it doesn't work. What's the syntax to match multiple occurances in a
row of a pattern?
Thanks,
Brian