GNOME Bugzilla – Bug 740284
Scanner does not replace strings with parentheses
Last modified: 2014-11-18 08:43:48 UTC
in 2.2.7: When I try to change "(something)" into "something" it does nothing
It actually does replace but keeps the parens.
It is not possible to replace "something (else)" because it will try to match "something else"
There is no such version at 2.2.7. Anyway, the find and replace feature uses GRegex, which in turn uses Perl-compatible regular expressions, so it is necessary to escape the parentheses, for example: \(something\) This is a bit awkward for simple strings, but very powerful for more complex matches. *** This bug has been marked as a duplicate of bug 736610 ***