You are viewing a single comment's thread. Return to all comments →
Update the delimiters to following and it works.
String delims = "[ .,_?!@']+";
String[] items = s.trim().split(delims);
Seems like cookies are disabled on this browser, please enable them to open this website
Database Normalization #5
You are viewing a single comment's thread. Return to all comments →
Update the delimiters to following and it works.
String delims = "[ .,_?!@']+";
String[] items = s.trim().split(delims);