How can I split a string using [ as the delimiter?
[
String line = \"blah, blah [ tweet, tweet\";
if I do
line.
The [ is a reserved char in regex, you need to escape it,
line.split("\\[");