在字符串中查找 2 个或多个连续的大写字母
Find 2 or more consecutive Capital letter in a string
在使用 java 代码检查和格式化时,我在删除变量、类、函数名称中所有连续的大写字母时遇到错误。因此,要在源代码中找到所有这些单词,这个正则表达式是有效的。
Example:-
- testSTring ---> match
- testString ---> no match
- TEstString ---> match
- teststrING ---> match
正确的正则表达式:-
([A-Z]{2,})
在使用 java 代码检查和格式化时,我在删除变量、类、函数名称中所有连续的大写字母时遇到错误。因此,要在源代码中找到所有这些单词,这个正则表达式是有效的。
Example:-
- testSTring ---> match
- testString ---> no match
- TEstString ---> match
- teststrING ---> match
正确的正则表达式:-
([A-Z]{2,})