Skip to content

Commit 154b4ed

Browse files
authored
Merge pull request #1716 from lightcici/master
Align format
2 parents 70748a0 + e6f6ffc commit 154b4ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ Here are some examples:
5252
|Match either the expression before or the one after the symbol.|||`(sponge\|mud) bath` matches "sponge bath" and "mud bath."|
5353
|Escape the character following the backslash| \\ |`\^` matches the character ^.|
5454
|Specify the number of occurrences of the preceding character or group|{x}, where x is the number of occurrences|`x(ab){2}x` matches "xababx", and `x(ab){2,3}x` matches "xababx" and "xabababx" but not "xababababx".|
55-
|Match text in a Unicode character class, where "X" is the Unicode number. For more information about Unicode character classes, see<br /><br /> [Unicode Standard 5.2 Character Properties](http://www.unicode.org/versions/Unicode5.2.0/ch04.pdf).|\p{X}|`\p{Lu}` matches "T" and "D" in "Thomas Doe".|
56-
|Match a word boundary|`\b` (Outside a character class \b specifies a word boundary, and inside a character class specifies a backspace).|`\bin` matches "in" in "inside" but not "pinto".|
55+
|Match text in a Unicode character class. For more information about Unicode character classes, see<br /><br /> [Unicode Standard 5.2 Character Properties](http://www.unicode.org/versions/Unicode5.2.0/ch04.pdf).|\p{X}, where "X" is the Unicode number.|`\p{Lu}` matches "T" and "D" in "Thomas Doe".|
56+
|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".|
5757
|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.|
5858
|Match any alphanumeric character|\w|`a\wd` matches "add" and "a1d" but not "a d".|
5959
|Match any whitespace character.|(?([^\r\n])\s)|`Public\sInterface` matches the phrase "Public Interface".|
@@ -69,4 +69,4 @@ Here are some examples:
6969
7070
## See also
7171

72-
- [Find and replace text](../ide/finding-and-replacing-text.md)
72+
- [Find and replace text](../ide/finding-and-replacing-text.md)

0 commit comments

Comments
 (0)