Skip to content

Commit

Permalink
Update common-content/en/module/tools/grep/index.md
Browse files Browse the repository at this point in the history
Co-authored-by: Sally McGrath <[email protected]>
  • Loading branch information
illicitonion and SallyMcGrath authored Dec 2, 2024
1 parent 12481c2 commit edbd3cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common-content/en/module/tools/grep/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ emoji= "💻"

For instance, the regular expression `^[0-9]*$` searches for a line which has only numbers in it. The `^` means "from the start of the line", the `$` means "until the end of the line", the `[0-9]` expresses the characters we're looking for, and the `*` means "0 or more of the characters". `^[0-9]` searches for a line which starts with a number (but doesn't care about what comes after).

You can learn more about Regulax Expressions at [RegexOne](https://regexone.com/). Many engineers just know the basic concepts, and Google for help when they need something more complicated, and this is fine.
You can learn more about Regular Expressions at [RegexOne](https://regexone.com/). Many engineers just know the basic concepts, and Google for help when they need something more complicated, and this is fine.

Learn about it from its man page (and the backlog exercises).

Expand Down

0 comments on commit edbd3cb

Please sign in to comment.