Input
One line per item. Numeric extraction is controlled by the regex below. Group rules on the right sum matching lines.
Numeric extraction
The first capturing group must contain the numeric text. Example: .*\(([\d.,]+)\).*
By default both are ignored.
Example with ignored comma: 3445,53 → 344553.
Example with decimal comma: 3445,53 → 3445.53.
Calculation by regex
Matching is case-insensitive and uses the original text exactly as written.