📌  相关文章
📜  javascript 不区分大小写的正则表达式 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:26.303000             🧑  作者: Mango

代码示例1
// It's the 'i' flag at the end of the expression.

/hello world/.test('Hello World'); // False
/hello world/i.test('Hello World'); // True