If i have this String:
String line = "This, is Stack; Overflow.";
And want to split it into the following array of strings:
String[] array = ...
so the array contains this output:
["This",",","is","Stack",";","Overflow","."]
What regex expression should i put into the split() method ?