IFNSUBSTR Branch to label if a substring not found in a master string |
Top Previous Next |
This script command attempts to locate a substring with a specified master string and branches to [ label ] if it is not found.
Use the alternate IFNSUBSTRI command to perform the same comparison but to ignore case during the comparison.
Consider the following simple example that results in a branch to the specified label.
SET master_string = "abcdefg" SET substring = "xyz"
IFNSUBSTR master_string substring goto substring_not_found
Related Command(s): IFSTRCMP, IFNSTRCMP , IFSUBSTR
|