Skip to content

Instantly share code, notes, and snippets.

View SGA-A's full-sized avatar
💫
Learning

Geomatic SGA-A

💫
Learning
View GitHub Profile
@SGA-A
SGA-A / regex.txt
Last active February 2, 2024 12:35
Fundamental-SCs
. - Any Character Except New Line
\d - Digit (0-9)
\D - Not a Digit (0-9)
\w - Word Character (a-z, A-Z, 0-9, _)
\W - Not a Word Character
\s - Whitespace (space, tab, newline)
\S - Not a Whitespace (space, tab, newline)
\b - Word Boundary (it is a word)
\B - Not a Word Boundary (it is part of a word)