Functions
The following functions can all be used in any evaluated expression, or called via the call command. They can also be called on their own, starting with verion 4.0 and later. All arguments are evaluated, except when a variable is use as a parameter. You can also define your own function which can work the same way as these built-in functions. For more information on user functions, click here.
Back to Documentation Index
isop (string)
Tests if the given string is an operator or not. Returns True or False. Operators that will return True are: +, -, *, /, \, &, >, <, =, ^, %.
instr (start, string, search_string)
Searches in the given string for a specified string starting at the specified start point. If the search string is found, it returns the location of the search string. Otherwise, 0 is returned.