I want to match the following three expressions:
"Facultad Regional Villa María"
"Facultad Regional Mar del Plata"
"Facultad Regional Haedo"
This what i did:
"^(Facultad Regional)( [A-Z][a-z]*){1,5}$"
As you can see, Facultad Regional
must be at the beginning of the string.
I can match the third expression perfectly. But not the other two. I need the following concept to put in my regex. I need that if the word "del" exists, is still valid. Also, if a word has an alphabet character with an accent mark, it's also valid.
Thanks in advance. I'm glad to read your answers (: