I have a string output like,
output= [http://my1/new/Info_one, http://my1/new/Info_two, http://my1/new/Info_three]
I need to take only [Info_one,Info_two,Info_three]
. I tried using,
-----
-----
System.out.println("output="+output); // above result
String[] output2= output.split(",");
System.out.println("output2="+output2); // result is like----->[Ljava.lang.String;@7013d1
String[] output3= output2.split("/") //gave error----->Cannot invoke split(String) on the array type String[]
How I can take only last part of this outputs?