目录

JavaScript RegExp compile()

RegExpcompile() 自 1999 年起已被弃用。

避免使用它。

它可能随时停止在您的浏览器中运行。

描述

compile() 方法是已弃用在 JavaScript 版本 1.5 中。

该方法用于在脚本执行期间编译正则表达式。


语法

RegExpObject.compile( regexp, modifier)

参数值

Parameter Description
regexp A regular expression
modifier Specifies the type of matching. "g" for a global match, "i" for a case-insensitive match and "gi" for a global, case-insensitive match