VBScriptで文字列を指定した文字列で分割し、配列に格納する方法を解説しています。
文字列「あ,い,う,え,お」をカンマ「,」で分割した値を配列に格納する例です。
以下のコードをコピペして、そのまま実行すると、メッセージボックスに「あ」→「い」→「う」→「え」→「お」と順番に表示されます。
arr = Split("あ,い,う,え,お", ",") MsgBox arr(0) ' 実行結果:あ MsgBox arr(1) ' 実行結果:い MsgBox arr(2) ' 実行結果:う MsgBox arr(3) ' 実行結果:え MsgBox arr(4) ' 実行結果:お
下記は変数「str」に格納した文字列をカンマ「,」で分割した値を配列に格納する例になります。
str = "あ,い,う,え,お" arr = Split(str, ",") MsgBox arr(0) ' 実行結果:あ MsgBox arr(1) ' 実行結果:い MsgBox arr(2) ' 実行結果:う MsgBox arr(3) ' 実行結果:え MsgBox arr(4) ' 実行結果:お
コメント