Comment made by: slipset
Might not be the answer you want, but Clojurescript uses js' split implementation.
Testing this in the browser you get
> "ab; ab;".split(/(; )|(;$)/)
< ["ab", "; ", undefined, "ab", undefined, ";", ""] (7)
>
from https://mdn.org.cn/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/split
{quote}
If separator is a regular expression that contains capturing parentheses, then each time separator is matched, the results (including any undefined results) of the capturing parentheses are spliced into the output array. However, not all browsers support this capability.
{quote}
Which means that to avoid this, you should use non-capturing groups:
(clojure.string/split "ab; ab;" #"(?:; )|(?:;$)")
Which incidentally can be simplified to
(clojure.string/split "ab; ab;" #";(?: |$)")
Which produces the result you're after in both clojure and clojurescript.