hmonroe has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/env perl use Tk; $topWin = MainWindow->new(); my $text = $topWin->Text(); $text->insert("end", "Type text into this window"); print $text->search("-exact", 'e', '1.0', 'end')."\n"; print $text->search("-regexp", 'e', '1.0', 'end')."\n"; $text->pack(); MainLoop();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Tk Text regex crashes debugger
by GrandFather (Saint) on Jan 31, 2012 at 23:54 UTC | |
|
Re: Tk Text regex crashes debugger
by thundergnat (Deacon) on Feb 01, 2012 at 15:18 UTC |