Some versions of Regex include a "\L" syntax that allows a string to be forced to lowercase.
This would be really useful as at the moment the classification that is created reflects the case of the original input - which can lead to messy looking values in reports.
For example...
Input value:
website.com/PROMotion
RegEx:
^(.+)(\/.+)$
Mapping rule:
$2
Results in:
"/PROMotion" appearing in the report, where as I would prefer "/promotion" to appear in the report
Note: this is about the output, not the matching criteria - aware we can already do case insensitive matching