The String class has a split() method, that will return a String array.
Example 1:
public class StringSplit {
public static void main(String args[]) throws Exception{
new StringSplit().doit();
}
public void doit() {
String s3 = “Real-How-To”;
String [] temp = null;
temp = s3.split(“-”);
dump(temp);
}
public void dump(String []s) {
System.out.println(“————”);
for (int i = 0 [...]
Read Full Post »
Posted in javascript, tagged php, split, string on June 17, 2008 | 5 Comments »
Let us consider we get a value from a post actionone,two,three
i.e: $ss = $_POST['arv'];
Now using the php method explode() we will convert the string in to a array object
explode(seperator,string);
i.e. $tok = explode(‘,’,$ss);
so we have got a string array. Now we print the array using print_r() method. This method prints the array in string [...]
Read Full Post »