Match HTML tags.
.*?
, or limit scope [^>]
Hints:
X*
greedy quantifierX*?
lazy quantifier[XYZ]
character set, [^XYZ]
negated character sethttps://link.do/spa-possessive
Match numbers with units ending with semicolon: 123cm; 32kg; 1m3;
++
, see steps in debuggerHints:
\d
digit\w
word character (digit, letter, underscore)X++
possessive quantifierOptimize those two expressions:
Tea
column in CSV text: https://link.do/spa-csvproduct-size, product-column, product-info
and product ids that has digits 1,2,3. https://link.do/spa-cssHints:
^
beginning of the line(?:...)
non-capturing groupX{6}
repeat 6 timeshttps://link.do/spa-operations
Arithmetic operations.
You have a regex matching simple arithmetic operations. Allowed: two numbers
separated with plus or minus sign, ending with equals sign, e.g. 12+34=
or 32121-23=
12+322-1=
).12+322-1+223-2323+...=
).