Skip to content

Commit 8d32237

Browse files
v-maudelRon Petrusha
authored andcommitted
CC65340: Escaping "\D" at line 165 (#6485)
Hello, @rpetrusha , This proposed file change comes from https://github.com/dotnet/docs.zh-tw/pull/181. Could you review this contribution and help to merge if agreed? Many thanks in advance.
1 parent 6ac7c4a commit 8d32237

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/standard/base-types/grouping-constructs-in-regular-expressions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Grouping constructs delineate the subexpressions of a regular expression and cap
162162
|-------------|-----------------|
163163
|`\D+`|Match one or more non-decimal digit characters.|
164164
|`(?<digit>\d+)`|Match one or more decimal digit characters. Assign the match to the `digit` named group.|
165-
|\D+|Match one or more non-decimal digit characters.|
165+
|`\D+`|Match one or more non-decimal digit characters.|
166166
|`(?<digit>\d+)?`|Match zero or one occurrence of one or more decimal digit characters. Assign the match to the `digit` named group.|
167167

168168
<a name="balancing_group_definition"></a>

0 commit comments

Comments
 (0)