I have a String something like this
"myValue"."Folder"."FolderCentury";
I want to separate from the period ("."). I tried using the code below:
String a = column.replace("\"", ""); String columnArray[] = a.split(".");
But columnArray getting empty. What am I doing wrong here?
I want to add one more thing: someone her possible String array object will contain a spitted value, as indicated below, only two objects, not three.?
columnArray[0]= "myValue"."Folder"; columnArray[1]= "FolderCentury";
source share