Modifying constructor for regex-group structures.
(change-regex-group x [:pat <pat>] [:index <index>])
This is an often useful alternative to make-regex-group.
We construct a new regex-group structure that is a copy of
This is an ordinary
Macro:
(defmacro change-regex-group (x &rest args) (std::change-aggregate 'regex-group x args '((:pat . regex-group->pat) (:index . regex-group->index)) 'change-regex-group 'nil))