対象:次の形式の文字列
"<ABC1234(山括弧以外の文字の連続).....>ABC1234....."
string.match(/<.*>/);
)
string.match(/<[^>]*>/);
)
string.match(/<.*?>/);
)
let 開始時間 = (Date.now());
for (let index = 0; index < counter; index++) {
let x = `<${"AB12".repeat(500)}>${"C3".repeat(500)}`
let y = x.match(正規表現);
}
let 終了時間 = (Date.now());
(単位:ミリ秒) | 1回目 | 2回目 | 3回目 | 4回目 | 5回目 | 平均値 |
---|---|---|---|---|---|---|
(i) | ||||||
(ii) | ||||||
(iii) |
実行中