For the life of me, I can\'t figure out why this regular expression is not working. It should find upper case letters in the given string and give me the count. Any ideas are we
You can also use Java Regex, for example:
.+[\p{javaUpperCase}].+
An example from my work project: