TIP #113: MULTI-LINE SEARCHES IN THE TEXT WIDGET ================================================== Version: $Revision: 1.13 $ Author: Vince Darley State: Final Type: Project Tcl-Version: 8.5 Vote: Done Created: Friday, 11 October 2002 URL: https://tip.tcl-lang.org113.html Post-History: ------------------------------------------------------------------------- ABSTRACT ========== This TIP proposes enhancing the implementation of the /$textwidget search/ subcommand to allow matching of both exact strings and regexp patterns which span multiple lines, and to allow reporting on all matches. PROPOSAL ========== If the string/pattern given to the /search/ subcommand contains sub-strings/patterns which match newlines, then it will be possible for that command to return a match which spans multiple lines. Where a match could occur both within a single line and across multiple lines, the first such match will be found, and the length of the match will follow the usual regexp rules, as documented in the regexp man page. Since the text widget is inherently a line-based container of text, regexp searches will implicitly use the regexp /-line/ functionality so that /^/, /$/ matching beginning and end of any line, and /./, /[^/ will not match a newline (but see the /-nolinestop/ flag to turn off the latter behaviour). This can be implemented very efficiently, given the /TCL_REG_CANMATCH/ flag supported by the regexp library, with no impact at all on the speed of matching single lines. In addition, two new options to the /search/ subcommand are available: If the new /-all/ option is given to the /search/ subcommand, then all matches within the given range will be reported. This means the return result of the command will be a list of indices, and, if a /-count var/ option was given, /var/ will be set to a list of match-index-lengths. If the new /-nolinestop/ option is given then regexp searches will allow /./ and /[^/ sequences to match newline characters (which is normally not the case). This is equivalent to /not/ providing the /-linestop/ flag to Tcl's /regexp/ command. The text widget man page will be updated to reflect the new /-all/ and /-nolinestop/ options, and to remove the "single line" caveat. REFERENCE IMPLEMENTATION ========================== This is available from: The patch includes objectification of the entire Text widget, so the multi-line search changes are not obvious to isolate. In fact the changes required are < 100 lines of code (given that the rest has been objectified, that is). Of course one nice side-effect of objectification is that regexp objects used in searches are actually cached, which they previously couldn't be. Note: this patch has to workaround a crashing bug in Tcl's unicode string manipulation. It would be best if that bug was fixed before applying this patch. ISSUES ======== On the implementation side, it might be interesting to abstract the search interface away from the text widget, so that it could in principle be applied to any line-based textual source. As in the single-line matching implementation in Tcl 8.x, the lack of support for backwards matching in Tcl's regexp library means that backwards matching can only be implemented as repeated forward matches, with a commensurate performance penalty (the solution to which is outside the scope of this tip). Tk has a curious misfeature that /$text search -regexp "\n" $pos/ will always fail to match anything. This behaviour will change as a result of this TIP (it will match the first newline after /$pos/), and any code which somehow depended on that peculiarity will therefore break. COPYRIGHT =========== This document has been placed in the public domain. ------------------------------------------------------------------------- TIP AutoGenerator - written by Donal K. Fellows