Pages
Home
Disclaimer
Privacy
About Us
Showing posts with label
Delimited String
.
Show all posts
Showing posts with label
Delimited String
.
Show all posts
Thursday, September 22, 2016
Processing Delimited String
public class Parse {
public static void main(String [] args) {
String arr[];
String str="E006,Herbert Colanggo,3";
arr=str.split(",");
System.out.println(arr[0]);
System.out.println(arr[1]);
}
}
Older Posts
Home
Subscribe to:
Posts (Atom)