How can i split a sentence what is plotted with space and , in same time
E.g
String Sentence="Please , tell me about : job, hobby";
String[] words = Sentence.split(" ");
<--- so here i need ',' ':' ' '
splits,
How can i resolve multiple splitting?