Java: how to check if character belongs to a specific unicode block?

Yes, you can simple use Character.UnicodeBlock. Of(char).

If A-Za-z+ meets your requirement, you aren't going to find anything faster or prettier. However, if you want to match all letters in the Latin1 block (including accented letters and ligatures), you can use this: Pattern p = Pattern. Compile("\\pL&&\\p{L1}+"); That's the intersection of the set of all Unicode letters and the set of all Latin1 characters.

You have the opposite problem to this one, but ironically what doesn't work for him it just should work great for you. It is to just look for words in English (only ASCII compatible chars) with reg-exp "\w".

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions