advanced code snippet search
juzerali on 12/22/09
SplitRegexdelimiterjava
12/22/09 12:28pm
1 person have marked this snippet as a favorite
juzerali
String str="This is my Red house";String[] result=str.split(" +"); for (int i=0;i<result.length;i++) { System.out.println("The result is ==== "+result[i]); }
Report this snippet Tweet
Comment:
You need to login to post a comment.