Skip to content

Commit c801896

Browse files
authored
Escape parenthesis
1 parent 7c4b0cb commit c801896

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
@@ -60,7 +60,7 @@ Here are some examples:
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".|
6262
|Match a string inside quotes|((\\".+?\\")|('.+?'))|Matches any string inside single or double quotes.|
63-
|Match a hexadecimal number|\b0[xX]([0-9a-fA-F]+)\b|Matches "0xc67f" but not "0xc67g".|
63+
|Match a hexadecimal number|\b0[xX]([0-9a-fA-F]+\)\b|Matches "0xc67f" but not "0xc67g".|
6464
|Match integers and decimals|\b[0-9]*\\.\*[0-9]+\b|Matches "1.333".|
6565

6666
> [!TIP]

0 commit comments

Comments
 (0)