regex ↔ Syntax to express search pattern to match Character. XLang support
aka Regex, Regular-Expression, Regular-Expressions
Regular Expressions present in virtually every Programming Language albeit Syntax variations
References
.↔ regex Metacharacter to match any single character (excl\n& line terminator)+↔ ≥1RegExpQuantifier to match 1+{n,m}↔RegExpQuantifier to match betweenn-mtimes\↔ regex Escape Metacharacter to escape reserved regex characters(?:abc)↔ regex Non-Capturing Groupto prevent grouping reference|↔RegExpAssertion OR operator for alternative characters/expressions^[abc]↔RegExpCharacter Class to match at line start char.*↔RegExpQuantifier to match anything & everything\B↔ invertedRegExpAssertion to match only at not boundary of word (beginning or end of word)RegExp Syntax↔ JS-specific regex syntax\xxx↔ regex Metacharacter for Octal number xxx\xdd↔ regex Metacharacter for Hexadecimal number dd\uxxxx↔ regex Metacharacter for unicode character specified by Hexadecimal number xxxx\0↔ regex Metacharacter for NUL characterGlobbing↔ Algo to match Wildcard Character pattern ie Glob || regex