1.js正则表达式(RegExp对象) RegExp 对象有 3 个方法:test()、exec() 以及 compile()。 ①test()方法 //test() 方法检索字符串中的指定值。返回值是 true 或 false。 var patt1=new RegExp(“e”); [removed](patt1.test(“The best things in life are free”)); ②exec()方法 //exec() 方法检索字符串中的指定值。返回值是被找到的值。如果没有发现