Hi guys i have a a string like this
String main = "Sandy \"children\":[]"
String foo = "\"children\":[]";
main = main.replaceAll(foo, "");
If I want to replace the whole foo in main with a single character "" then what regex I need to use?
I ll be having a json data like this i need to replace all the empty children object
{"data" : "Search engines",
"children":[ {
"data":"Yahoo","children":[{"data":"1","children":[{}]}]},
{"data":"Bing","children":[{"data":"2","children":[]}]},{"data":"Bing2"},{"data":"Bing3"},{"data":"Bing4"},{"data":"Bing5"},{"data":"Bing6"},{"data":"Bing7"},{"data":"Bing34"}]
}
""isn't a single character - it's an empty string. – Jon Skeet Oct 17 '11 at 18:26