ice icon indicating copy to clipboard operation
ice copied to clipboard

Reduce usage of regular expressions in property matching

Open externl opened this issue 2 months ago • 0 comments

We currently use a regular expression per property for matching. This is largely unnecessary as most of our properties can be matched my a simple string match.

We should instead only use regex when necessary. The simplest thing is to add a bool to the Property struct indicating if the name/pattern requires regex.

externl avatar May 02 '24 18:05 externl