関数・命令 /

INSTR

INSTR(<haystack$>, <needle$> [,<start>])

Type: function

<haystack$> の中に <needle$> を検索します。
存在している場合最初の位置を返します。
<start> を設定して検索開始位置を設定できます。
ない場合は 0 を返します。

position = INSTR("Hello world", "wo")
PRINT INSTR("Don't take my wallet", "all", 10)