proceduresearchnextexact
TEXT

The proceduresearchnextexact statement searches for text in a procedure, starting from the current location.


Parameters

This statement has one parameter:

text – word or phrase to search for.


Description

This statement searches for text in a procedure window, starting from the current location. If the search fails to match, it returns an error.

This example searches for the word magic, starting from the current location. If the search fails, the program beeps and stops.

proceduresearchnextexact "magic"
if error
    beep
    stop
endif

This statement searches for an exact match. In the example above, only the word magic will match, not Magic or MAGIC. If you want a case insensitive search, use the proceduresearchnext statement.


See Also


History

VersionStatusNotes
10.0NewNew in this version.