[ Team LiB ] Previous Section Next Section

Other Commands That Use Regular Expressions

Several Tcl commands use regular expressions.

  • lsearch takes a -regexp flag so that you can search for list items that match a regular expression. The lsearch command is described on page 69.

  • switch takes a -regexp flag, so you can branch based on a regular expression match instead of an exact match or a string match style match. The switch command is described on page 77.

  • The Tk text widget can search its contents based on a regular expression match. Searching in the text widget is described on page 542.

  • The Expect Tcl extension can match the output of a program with regular expressions. Expect is the subject of its own book, Exploring Expect (O'Reilly, 1995) by Don Libes.

    [ Team LiB ] Previous Section Next Section