https://issues.apache.org/ooo/show_bug.cgi?id=124521
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Component|ui |editing Depends on| |107619 Resolution|DUPLICATE |--- --- Comment #5 from [email protected] --- (In reply to Joe Smith from comment #2) > That's not the result I get; that's why I filed a new report. > > See attached screen shots. yes apologies, I had the parenthesis wrong "(s\d+):" not "s(\d+):" somehow for the second and following hits the last char of the match is replaced by the second char in the replacement string Cell: s1:A s2:B s3:C search string: s(\d+): replacement string: $1) -> result: 1)A ))B ))C replacement string: $1x) -> result: 1x)A xx)B xx)C replacement string: x$1) -> result: x1)A x1)B x1)C (see bug 107619) Cell: s11:A s22:B s33:C replacement string: $1) -> result: 11)A 1))B 1))C (bug 107619 needs to be fixed first before we can fix this result) -- You are receiving this mail because: You are the assignee for the issue. You are watching all issue changes.
