LIKE function
Purpose: LIKE compares a string against a pattern.
Syntax: RetVal% = LIKE(Buffer$, Pattern$) Parameters:
Return Value:
|
Example:
DIM RetVal AS INTEGER RetVal = LIKE("abcdefg","*d?f*") PRINT RetVal RetVal = LIKE("abcdefg","*df?") PRINT RetVal