我需要匹配的子字符串与最后一个前导(首字母)大写字母不在括号内到字符串的结尾
我试图使用这个正则表达式:
([A-Z][a-zA-Z\-\']*\s*)*(\s+\([^)]*\)[\s]*)+$
匹配此输入:
can This Be PosSible (Ignore aNy Upper CAse in parenthesis)
并且比赛是:
This Be PosSible (Ignore aNy Upper CAse in parenthesis)
但所需的输出是:
PosSible (Ignore aNy Upper CAse in parenthesis)
请参阅this on regex101。