repository:the literal text repository: (case sensitive) \s+any whitespace character, repeated at least once
?matches at most one character from the set below:
'the literal ' (3910 / 478 / 2716)
"the literal " (3410 / 428 / 2216)
Group depName(?<depName>[_\-\/\w]+) Character Class[_\-\/\w]+ +matches at least one character from the set below:
_the literal _ (9510 / 1378 / 5F16)
\-the literal - (4510 / 558 / 2D16)
\/the literal / (4710 / 578 / 2F16)
\wany word character
?matches at most one character from the set below:
'the literal ' (3910 / 478 / 2716)
"the literal " (3410 / 428 / 2216)
,?optionally matches the literal , (4410 / 548 / 2C16)
\s+any whitespace character, repeated at least once
tag:the literal text tag: (case sensitive) \s+any whitespace character, repeated at least once
?matches at most one character from the set below:
'the literal ' (3910 / 478 / 2716)
"the literal " (3410 / 428 / 2216)
Group currentValue(?<currentValue>[_\-\.\w]+) Character Class[_\-\.\w]+ +matches at least one character from the set below:
_the literal _ (9510 / 1378 / 5F16)
\-the literal - (4510 / 558 / 2D16)
\.the literal . (4610 / 568 / 2E16)
\wany word character
?matches at most one character from the set below:
'the literal ' (3910 / 478 / 2716)
"the literal " (3410 / 428 / 2216)
g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string