Browse Source

docs(its-a-match): correct grammar

pull/1112/head
davhojt 2 years ago committed by Dav Hojt
parent
commit
642af3f9a7
  1. 18
      subjects/its-a-match/README.md

18
subjects/its-a-match/README.md

@ -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)

Loading…
Cancel
Save