String line = "First string March 8, # 2017: Boris#|#Second string";
String[] list = line.split("#|#");
i was expecting list[0] = "First string March 8, # 2017: Boris"
and
list[1] = "Second string"
But i am not getting the result as expected . its get split to multiple strings. whats the change i need to do in split function ?