regexSubstitution property
String?
get
regexSubstitution
Substitution pattern for rules which specify a regexFilter
.
The first match of regexFilter
within the url will be
replaced with this pattern. Within regexSubstitution
,
backslash-escaped digits (\1 to \9) can be used to insert the
corresponding capture groups. \0 refers to the entire matching text.
Implementation
String? get regexSubstitution => _wrapped.regexSubstitution;
set
regexSubstitution
(String? v)
Implementation
set regexSubstitution(String? v) {
_wrapped.regexSubstitution = v;
}