Skip to content
Advertisement

How to grab all words that start with capital letters?

I want to create a Java regular expression to grab all words that start with a capital letter then capital or small letters, but those letters may contain accents.

Examples :

Where

Àdónde

Rápido

Àste

Can you please help me with that ?

Advertisement

Answer

Regex:

JavaScript

Java string:

JavaScript

Explanation:

JavaScript

Caveat: This only works correctly in very recent Java versions (JDK7); for others you may need to substitute a longer sub-regex for b. As you can see here, you may need to use (kudos to @tchrist)

JavaScript

for b, so the Java string would look like this:

JavaScript
Advertisement