I am trying to split a string like: abc|aa|| When I use the regular string.split I am required to provide a regular expression. I tried to do the following : string.split("|") string.split("\|") string.split("/|") string.split("\Q|\E")I am trying to split a string like: abc|aa|| Wh