Skip to content

Commit

Permalink
Fix type matching end of email address
Browse files Browse the repository at this point in the history
The wrong digit was included in the character limit, 4 instead of 3. 
{2,3}
  • Loading branch information
PhilReedData authored Dec 6, 2019
1 parent 5f792f0 commit a0b239b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion episodes/02-match-extract-strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Open the [swcCoC.md file](https://github.com/LibraryCarpentry/lc-data-intro/tree
> >
> > `\w` matches any word (including digits and underscore)
> >
> > `{2,4}` limits the number of word characters and/or digits to a two or three-character string.
> > `{2,3}` limits the number of word characters and/or digits to a two or three-character string.
> >
> > `[]` the brackets enclose the boolean string that 'OR' the digits, word characters, characters and dash.
> >
Expand Down

0 comments on commit a0b239b

Please sign in to comment.