SearchContext.replace
bool replace(gtk.text_iter.TextIter matchStart, gtk.text_iter.TextIter matchEnd, string replace)Replaces a search match by another text. If match_start and match_end doesn't correspond to a search match, false is returned.
match_start and match_end iters are revalidated to point to the replacement text boundaries.
For a regular expression replacement, you can check if replace is valid by calling [glib.regex.Regex.checkReplacement]. The replace text can contain backreferences.
Parameters
matchStart | the start of the match to replace. |
matchEnd | the end of the match to replace. |
replace | the replacement text. |
Returns
whether the match has been replaced.
Throws
[ErrorWrap]