Share via


EscapeSequence.Unescape Method

Removes any escape characters from the specified string.

Namespace:  Microsoft.SqlServer.Management.SqlParser.Parser
Assembly:  Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)

Syntax

'Declaration
Public Function Unescape ( _
    value As String _
) As String
'Usage
Dim instance As EscapeSequence
Dim value As String
Dim returnValue As String

returnValue = instance.Unescape(value)
public string Unescape(
    string value
)
public:
String^ Unescape(
    String^ value
)
member Unescape : 
        value:string -> string 
public function Unescape(
    value : String
) : String

Parameters

  • value
    Type: System.String
    The string from which to remove escape characters.

Return Value

Type: System.String
The specified string with any escape characters removed.