proceduresearchexact
TEXT

The proceduresearchexact statement searches for text in a procedure.


Parameters

This statement has one parameter:

text – word or phrase to search for.


Description

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

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

proceduresearchexact "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 proceduresearch statement.


See Also


History

VersionStatusNotes
10.0NewNew in this version.