-
Notifications
You must be signed in to change notification settings - Fork 630
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6576e5a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To note for regular expressions in general, people tend to be driven solely toward
grep
with misplaced expectations; grep is useful for simple text matching;sed
andawk
in the other hand offer better access and options; e.g match/replace/edit patterns. Other point, truly learning regular expression grammars is a tremendous advantage ; regrettably speaking, from my experience, most of individuals stick with copy-paste examples thinking it is ok; they don't foresee or understand the gain of freedom it offers.