JavaScript 正規表現で区切り文字をORで指定サンプル

環境
Google Chrome 113.0.5672.127(Official Build)

構文
文字列.split(/[,:]/);
[,:]は、カンマ(,)またはコロン(:)という正規表現です。

使用例

const strA = "s,t:u,d,y:t";
const res = strA.split(/[,:]/);

console.log(res);

実行結果
> Array [“s", “t", “u", “d", “y", “t"]

JavaScript

Posted by arkgame