I have following string:
;Spe \,\:\; cial;;;
and I want to split it with semicolon as delimiter, however semicolon preceded by "\" should not be counted as delimiter. So I would like to get something like
["", "Spe \,\:\; cial", "", "", ""]
Update:
Java representation looks like:
String s = ";Spe \\,\\:\\; cial;;;";