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)+
↔ ≥1RegExp
Quantifier to match 1+{n,m}
↔RegExp
Quantifier to match betweenn-m
times\
↔ regex Escape Metacharacter to escape reserved regex characters(
?:abc)
↔ regex Non-Capturing Groupto prevent grouping reference|
↔RegExp
Assertion OR operator for alternative characters/expressions^[abc]
↔RegExp
Character Class to match at line start char.*
↔RegExp
Quantifier to match anything & everything\B
↔ invertedRegExp
Assertion 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