OSDN Git Service

2014/02/07 更新
[bacon/BaCon-Japanese.git] / 関数・命令 / INSTR.txt
index b7eaaad..bb260d4 100644 (file)
@@ -1,14 +1,13 @@
-  INSTR
+INSTR
 
-   INSTR(<haystack$>, <needle$> [,<start>])
+INSTR(<haystack$>, <needle$> [,<start>])
 
-   Type: function
+Type: function
 
-   <haystack$> の中に <needle$> を検索します。
-   存在している場合最初の位置を返します。
-   <start> を設定して検索開始位置を設定できます。
-   ない場合は 0 を返します。
+<haystack$> の中に <needle$> を検索します。
+存在している場合最初の位置を返します。
+<start> を設定して検索開始位置を設定できます。
+ない場合は 0 を返します。
 
    position = INSTR("Hello world", "wo")
    PRINT INSTR("Don't take my wallet", "all", 10)
-