We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ac98a5 commit 5fb0e51Copy full SHA for 5fb0e51
docs/ide/using-regular-expressions-in-visual-studio.md
@@ -60,7 +60,7 @@ Here are some examples:
60
|Match a Unicode character|\uXXXX where XXXX specifies the Unicode character value.|`\u0065` matches the character "e".|
61
|Match an identifier|\b[\_\w-[0-9]][\_\w]*\b|Matches "type1" but not "&type1" or "#define".|
62
|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 "0xc67fc67f".|
+|Match a hexadecimal number|\b0[xX]([0-9a-fA-F]+)\b|Matches "0xc67f" but not "0xc67g".|
64
|Match integers and decimals|\b[0-9]*\\.\*[0-9]+\b|Matches "1.333".|
65
66
> [!TIP]
0 commit comments