Is it possible to use regex to split by words instead of symbol/special characters?
For instance, It is fun, content=[I love java, content=[Java eclipse then split by content=[
So the results will become like
It is fun
I love java
Java eclipse
I tried something like this but it have error that say HTTP Status 500 - illegal repetition near index
String [] strArray = testcontent.split("content=[");
for (String str :strArray) {
System.out.println("TestSplit" + str);