I have this regular expression and want to add the rule which limit the total length is no more than 15 chars. I saw some lookahead examples but they\'re not quite clear. Ca
^(?=.{15}$)([A-Z]+( )*[A-Z]+)+$
See it