Files
vault/Career/Regex.md
Zaine Arch 9645ee23b0
Some checks failed
Build Quartz Notes / build (push) Failing after 21s
update
2026-06-10 20:00:45 +01:00

729 B

note type, date, done, link
note type date done link
theory
2026-06-04 https://www.rexegg.com/regex-quickstart.php

Regular expressions (regex) are patterns used to match character combinations in strings, offering a powerful way to search and manipulate text that can replace dozens of lines of code. While the syntax can seem complex, understanding core components like character classes (e.g., [0-9] for digits, \w for word characters), quantifiers (e.g., + for one or more, * for zero or more), and anchors (e.g., ^ for start, $ for end) allows for effective pattern matching.

Check out the link, which is really useful in showcasing the rules.

Use: https://regex101.com/ to build and validate.