GlobalObject.escape(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Converts the specified string to use the % character to escape reserved characters (@, *, _, +, -, ., /) and express them in Unicode notation.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
static System::String ^ escape(System::Object ^ string);
[Microsoft.JScript.JSFunction((Microsoft.JScript.JSFunctionAttributeEnum) 0, Microsoft.JScript.JSBuiltin.Global_escape)]
[Microsoft.JScript.NotRecommended("escape")]
public static string escape (object string);
[Microsoft.JScript.NotRecommended("escape")]
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.None, Microsoft.JScript.JSBuiltin.Global_escape)]
public static string escape (object string);
[<Microsoft.JScript.JSFunction((Microsoft.JScript.JSFunctionAttributeEnum) 0, Microsoft.JScript.JSBuiltin.Global_escape)>]
[<Microsoft.JScript.NotRecommended("escape")>]
static member escape : obj -> string
[<Microsoft.JScript.NotRecommended("escape")>]
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.None, Microsoft.JScript.JSBuiltin.Global_escape)>]
static member escape : obj -> string
Public Shared Function escape (string As Object) As String
Parameters
- string
- Object
The string to convert.
Returns
A new copy of string
in which the reserved characters are escaped by the % character and expressed in Unicode.
- Attributes