AMX Mod X API Documentation

Signature
native strfind(const string[], const sub[], bool:ignorecase = false, pos = 0);
Description

Tests whether a string is found inside another string.

Notes
  • This supports multi-byte characters (UTF-8) on case insensitive comparison.
Parameters
  • string String to search in.
  • sub Substring to find inside the original string.
  • ignorecase If true, search is case insensitive.

    If false (default), search is case sensitive.

  • pos Start position to search from.
Returns

-1 on failure (no match found). Any other value

indicates a position in the string where the match starts.

Назад
Верх