Feature Request: Support Named Regex Groups in If ~R Conditions
Please extend If ~R conditionals to support named regular expression capture groups (e.g., (?<ssid>.*)), just as the Simple Match/Regex action does. This would bring consistency across matching actions and allow cleaner logic in reusable tasks by eliminating the need for intermediate extraction steps.
Example:
If %line ~R ^"(?<ssid>.*)"$
…should create the variable %ssid if matched, just like Simple Match/Regex already does.
Thank you!