Regex

I use regex101arrow-up-right every time I want write a new regex.

Small tip, regex101arrow-up-right has night mode.

Notes

  • .* = will select all occurrences

  • A regex is useful for validating simple patterns and for finding patterns in text. For anything beyond that it’s almost certainly a terrible choice.

Last updated