#!perl
use strict;
use warnings;
use Tk;
use vars qw/$TOP/;
$TOP = MainWindow->new();
my $t = $TOP->Scrolled(qw/Text -scrollbars e/)->pack();
$t->insert('0.0', 'try **until **you **succeed');
my $result = $t->search(-forwards,"**",'end');
print "\$result: $result\n";
my $start=$result+.2;
print "\$start: $start\n";
my @chars=$t->get("$start","$start wordend");
print "\nThe word:";
print"\n@chars\n";
MainLoop;
####
# aperl -v
This is perl, v5.6.1 built for MSWin32-x86-multi-thread
(with 1 registered patch, see perl -V for more detail)
Copyright 1987-2001, Larry Wall
Binary build 633 provided by ActiveState Corp. http://www.ActiveState.com
Built 21:33:05 Jun 17 2002
####
# aperl textwidget
$result: 1.4
$start: 1.6
The word:
until