JavaScript split 末尾が区切り文字のサンプル

環境
Google Chrome 113.0.5672.127(Official Build

構文
文字列.split(“,");
splitの引数にカンマ(“,")を指定した場合、空文字も要素として取得します。

使用例

const strA = "s,t,u,,";
const res = strA.split(",");

console.log(res);

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

JavaScript

Posted by arkgame