StringPrototype.replace(Object, Object, Object) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
對第一個指定的物件執行指定之規則運算式模式的搜尋,並且將任何相符的項目取代為第三個指定的物件。
此 API 支援此產品基礎結構,但無法直接用於程式碼之中。
public:
static System::String ^ replace(System::Object ^ thisob, System::Object ^ regExp, System::Object ^ replacement);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.String_replace)]
public static string replace (object thisob, object regExp, object replacement);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.String_replace)>]
static member replace : obj * obj * obj -> string
Public Shared Function replace (thisob As Object, regExp As Object, replacement As Object) As String
參數
- thisob
- Object
這個方法執行位置的物件。
- regExp
- Object
要搜尋的規則運算式模式。
- replacement
- Object
取代任何相符的項目。
傳回
取代後的新字串。
- 屬性