Hello.. I'm new to this forum. Please help me.
I've a string.
search = "Empty Jars$@$301". I need to split the string on "$@$"
String arr[] = search.split("[$@$]");
the array is something like this
arr = (Empty Jars, , ,301)
I dont know y i am getting 2 blank spaces. there are no white spaces or new line chars in the string..