1
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WinActor 配列の使い方 v6.1.0

Posted at

背景

あるフォルダ配下のファイルを取得して変数に格納。⇒それをFor文で回して同じ処理をしたいことがあった

ふつうの開発でよく使う配列はまず配列を定義する。

変数一覧に登録するかぁ  あれっ? 変数名に配列はどう書くんだ?

Answer:普通に書く ex:test
test[]、test(5)、test(1 to 5)じゃないんだね

シナリオにはこう書く
image.png
まず配列を初期化

配列を初期化
Dim rootArray
arrayName = !配列名!

'ルート配列の存在確認
Set rootArray = WScript.CreateObject("Scripting.Dictionary")
rootArray.RemoveAll()
If rootArray.Exists(arrayName) Then
  getArray = rootArray.Item(arrayName)
  Erase getArray
  rootArray.Remove arrayName
End If

image.png


要素ごとに格納
image.png
以下のようにコメントアウトしないと、エラーが出る

格納
'入力チェック
'If (Len(arrayName) = 0) Then
'  errorMsg = "配列名を入力してください"
'  Err.Raise 1, "", errorMsg
'  WScript.Quit
'End If

image.png

格納した配列からデータを取得

それをメッセージで出力

1
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?