https://bugs.freedesktop.org/show_bug.cgi?id=64174
Eike Rathke <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |NOTABUG --- Comment #2 from Eike Rathke <[email protected]> --- \< is not "the beginning of cell content" but a word boundary, citing from the old online help: Only finds the search term if it appears at the beginning of a word. For example, "\<book" finds "bookmark", but not "checkbook". That this worked with ' was a bug.. The beginning of content actually is ^ instead of \< As of 4.0 LibreOffice uses the ICU regular expression engine that in some details has a different syntax (Perl regular expression syntax) and doesn't know \< anymore but instead uses \b, the old \< for convenience is emulated as \b followed by a look-ahead word-char. Anyhow, ^' is the correct syntax to find the ' content at the beginning. -- You are receiving this mail because: You are the assignee for the bug.
_______________________________________________ Libreoffice-bugs mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs
