update
Some checks failed
Build Quartz Notes / build (push) Failing after 21s

This commit is contained in:
2026-06-10 20:00:45 +01:00
parent 5d3ed14275
commit 9645ee23b0
295 changed files with 2044 additions and 33 deletions

6
Career/Regex.md Executable file → Normal file
View File

@@ -3,4 +3,10 @@ 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.