如何在Typescript中通过多个分隔符拆分字符串

时间:2018-10-16 11:09:41

标签: typescript split

我需要用分号,冒号,逗号,cr,lf,clfr和空格分割字符串。我该怎么办?

1 个答案:

答案 0 :(得分:2)

您可以为split函数提供一个正则表达式以进行拆分。

一个简单的样子。

const text = "a,c;d e";

const splitted = text.split(/;|,| /);