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