13
Some checks failed
Build Quartz Notes / build (push) Failing after 20s

This commit is contained in:
2026-07-13 09:16:09 +01:00
parent 9645ee23b0
commit 129ce1442b
336 changed files with 3812 additions and 579 deletions

12
Career/Theory/Regex.md Executable file
View File

@@ -0,0 +1,12 @@
---
note type:
- theory
date: 2026-06-04
done:
link: 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.