RegExpPrototype.compile(Object, Object, Object) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
為指定的規則運算式模式與旗標建立及編譯新的 RegExpObject 物件。
此 API 支援此產品基礎結構,但無法直接用於程式碼之中。
public:
static Microsoft::JScript::RegExpObject ^ compile(System::Object ^ thisob, System::Object ^ source, System::Object ^ flags);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.RegExp_compile)]
public static Microsoft.JScript.RegExpObject compile (object thisob, object source, object flags);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.RegExp_compile)>]
static member compile : obj * obj * obj -> Microsoft.JScript.RegExpObject
Public Shared Function compile (thisob As Object, source As Object, flags As Object) As RegExpObject
參數
- thisob
- Object
這個方法執行位置的物件。
- source
- Object
要搜尋的規則運算式模式。
- flags
- Object
忽略大小寫、全域和多行模式的旗標。
傳回
新的 RegExpObject 物件。
- 屬性