正則表達式:從Copy到手寫

1. RegExp對象 JavaScript有兩種方式實例化RegExp對象javascript 字面量 構造函數 字面量 const reg = /all/; console.log(reg); // /all/ 'This is all I have.'.replace(reg, 'ALL'); // This is ALL I have. 構造函數 const reg = new
相關文章
相關標籤/搜索