JS 經常使用正則表達式備忘錄

JS 經常使用正則表達式備忘錄 匹配正則 使用 .test() 方法html let testString = "My test string";let testRegex = /string/;testRegex.test(testString);   匹配多個模式 使用操做符號 |git const regex = /yes|no|maybe/;   忽略大小寫 使用i標誌表示忽略大小寫
相關文章
相關標籤/搜索