RegexUnEscape Function

The RegexUnEscape() function takes one (1) argument as already escaped string and uses regex to unescape the given string.

The syntax for RegexUnEscape function is RegexUnEscape( Escaped String ).

/* Following will output Hello this is string! */
SELECT RegexUnEscape('Hello\\ this\\ is\\ string!') ;