SPLIT函数,能不能选择两种以上的分割字符作为分割一个字符串

SPLIT函数,能不能选择两种以上的分割字符作为分割一个字符串的依据字符?怎么同时分割两种字符呢?

vb.net可以
dim splitter as string = ",;"
dim s as string = "123,123,123;123;123"
dim result = s.split(splitter.toarray().select(function(x) x.tostring()), stringsplitoptions.removeempty)