From 014f30028579b15130acdf1479d9c7fd4e91a73f Mon Sep 17 00:00:00 2001 From: Andy De George Date: Tue, 13 Nov 2018 09:15:19 -0800 Subject: [PATCH] Fixed string --- xml/System.Text.RegularExpressions/Regex.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xml/System.Text.RegularExpressions/Regex.xml b/xml/System.Text.RegularExpressions/Regex.xml index ec9890202ff..389e5091032 100644 --- a/xml/System.Text.RegularExpressions/Regex.xml +++ b/xml/System.Text.RegularExpressions/Regex.xml @@ -5148,7 +5148,7 @@ On .NET Core, calls to the `Regex.CompileToAssembly` method throw a [!NOTE] > cannot reverse an escaped string perfectly because it cannot deduce precisely which characters were escaped, -- It replaces the hexadecimal values in verbatim string literals with the actual printable characters. For example, it replaces @"\0x07" with @"\a", or @"\x0A" with @"\n". It converts to supported escape characters such as \a, \b, \e, \n, \r, \f, \t, \v, and alphanumeric characters. +- It replaces the hexadecimal values in verbatim string literals with the actual printable characters. For example, it replaces @"\x07" with "\a", or @"\x0A" with "\n". It converts to supported escape characters such as \a, \b, \e, \n, \r, \f, \t, \v, and alphanumeric characters. If the method encounters other escape sequences that it cannot convert, such as \w or \s, it throws an .