const regexp = RegExp('foo[a-z]*','g');; const str = 'table football, foosball';; const matches = str.matchAll(regexp);; for (const match of matches) ...
確定! 回上一頁