pat | : | string |
text | : | string |
Returns: {-1, 0, posint}
Synopsis: This returns the offset before the character where pat matches with text. If pat does not match text, -1 is returned.
Examples:
> CaseSearchString('here', 'It is in here'); # case sensitive, found > CaseSearchString('it', 'It is in here'); # case sensitive, not found
See also: SearchString