diff --git a/src/day_5/notes.md b/src/day_5/notes.md index 5da40a6..ff6e1f5 100644 --- a/src/day_5/notes.md +++ b/src/day_5/notes.md @@ -58,21 +58,21 @@ Can be used for example with `grep`, `rg`, `find`, `fd`, `nvim`, etc. -`^`: Start of line -`$`: End of line -`()`: Group -`[abcd]`: Character set, here `a` until `d` -`[a-z]`: Character range, here `a` until `z` -`[^b-h]`: Negated character range, here `b` to `h` -`.`: Any character -`.*`: 0 or more characters -`.+`: 1 or more characters -`\w`: Word -`\w`: Not word -`\d`: Digit -`\d`: Not digit -`\s`: Whitespace -`\s`: Not whitespace +- `^`: Start of line +- `$`: End of line +- `()`: Group +- `[abcd]`: Character set, here `a` until `d` +- `[a-z]`: Character range, here `a` until `z` +- `[^b-h]`: Negated character range, here `b` to `h` +- `.`: Any character +- `.*`: 0 or more characters +- `.+`: 1 or more characters +- `\w`: Word +- `\w`: Not word +- `\d`: Digit +- `\d`: Not digit +- `\s`: Whitespace +- `\s`: Not whitespace ## More tools