docs(its-a-match): correct grammar

This commit is contained in:
davhojt 2022-05-02 14:40:49 +01:00 committed by Dav Hojt
parent 81d7a49cde
commit 642af3f9a7
1 changed files with 10 additions and 8 deletions

View File

@ -2,19 +2,21 @@
### Instructions ### Instructions
Create 4 regular expression in variables: Have you been been pondering over the etymology of `grep`?
- `normal` matches with the expression 'hi'. Create 4 regular expression variables:
- `begin` matches with the expression 'hi', - `normal`: matches with the expression 'hi'.
only when it is in the beginning.
- `end` matches with the expression 'hi', - `begin`: matches with the expression 'hi',
only when it is in the end. only when it is at the beginning.
- `beginEnd` matches with the expression 'hi', - `end`: matches with the expression 'hi',
only when it is at the end.
- `beginEnd`: matches with the expression 'hi',
only when it is exactly hi. only when it is exactly hi.
### Notions ### Notions
- [github.com/ziishaned/learn-regex#28-anchors](https://github.com/ziishaned/learn-regex#28-anchors) - [RegEx Anchors](https://github.com/ziishaned/learn-regex#28-anchors)