正規表現 Javascriptで学ぶ正規表現 const text = 'Hello there!';const regex = new RegExp('ll'); console.log(regex.test(text));trueと表示されます。const text = 'Hell... 2017.12.10 正規表現