I want to extract the words that begin with a capital — including accented capitals — using regular expressions in Java.
This is my conditional for words beginning with capital A through ...
Dear All, I am using the following simple regex: " w+" which matches one more word characters. My problem is that it is not matching unicode characters which are part of my language. Is there any way to force java regex engine to include unicode characters in w ? If this is not possible is there any third party library tha ...