Skip to content

Commit 7c4b0cb

Browse files
committed
fixes #1947
1 parent 5fb0e51 commit 7c4b0cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/ide/using-regular-expressions-in-visual-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Here are some examples:
5555
|Match a word boundary|\b (Outside a character class `\b` specifies a word boundary, and inside a character class `\b` specifies a backspace.)|`\bin` matches "in" in "inside" but not "pinto".|
5656
|Match a line break (that is, a carriage return followed by a new line).|\r?\n|`End\r?\nBegin` matches "End" and "Begin" only when "End" is the last string in a line and "Begin" is the first string in the next line.|
5757
|Match any alphanumeric character|\w|`a\wd` matches "add" and "a1d" but not "a d".|
58-
|Match any whitespace character.|(?([^\r\n])\s)|`Public\sInterface` matches the phrase "Public Interface".|
58+
|Match any whitespace character.|\s|`Public\sInterface` matches the phrase "Public Interface".|
5959
|Match any numeric character|\d|`\d` matches and "3" in "3456", "2" in 23", and "1" in "1".|
6060
|Match a Unicode character|\uXXXX where XXXX specifies the Unicode character value.|`\u0065` matches the character "e".|
6161
|Match an identifier|\b[\_\w-[0-9]][\_\w]*\b|Matches "type1" but not "&type1" or "#define".|

0 commit comments

Comments
 (0)