For those of you who are familiar with java and php equally, this question is for you. I am familiar with the split() and explode() functions in php. I am trying to accomplish the same tast in Java. Does anyone know how to do this? Java doesn't seem to have similiar functions.
thx blue
myArray.split(String seperator);
your object should be a String, not an Array 🙂
myString.split(String seperator);