You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openoffice.apache.org by bu...@apache.org on 2013/01/18 23:47:59 UTC

[Bug 121644] unexpected results with boundary regex patterns (regular expressions)

https://issues.apache.org/ooo/show_bug.cgi?id=121644

john_ha <jo...@yahoo.co.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |john.ha24z@yahoo.co.uk

--- Comment #1 from john_ha <jo...@yahoo.co.uk> ---
I am also seeing this, or a very similar, problem with \>

  Assume I have 7fred7 and I want to change only the front 7 to 8

\>7 -> changes front only - correct
\w7 -> changes back only  - correct
7\w -> changes front only - correct

  Assume I have ’fred’ and I want to change only the front ’ to 8

\>’ -> changes both  - wrong
\w’ -> changes back  - correct
’\w -> changes front - correct

  Assume I have ’fred’ and I want to change only the front ’ to 8

   RQc = Chr(8217)  ' single quote right - curly

\>"+RQc+" -> changes both  - wrong
\w"+RQc+" -> changes back  - correct
"+RQc+"\w -> changes front - correct

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.