Comparing Index Values

You can compare two index values by using the compare method.

$text->compare(index1, op, index2);

You pass the first index, the test operation to perform, and the second index. The values for op are: "<", "<=", "==", ">=", and "!=". The function returns 1 if the test is true and 0 if it isn’t. The following call returns 1 because the index "1.0" is less than "end":

$status = $text->compare("1.0", "<=", "end");

Get Mastering Perl/Tk now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.