I need to split this String into tokens using split. I am having trouble understanding java.util.regex.
String str = "He is a very very good boy, isn't he?";
The output in an array should be:
[He, is, a, very, very, good, boy, isn, t, he]
How do I achieve that?