yajidai
@yajidai

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

teratermマクロのgroupmatchstrについて

解決したいこと

teratermのマクロ作成時、文字列を分割(strsplit)して、結果を使いたいのですが、groupmatchstrは最後の数字部分を動的に変化させることはできないのでしょうか。うまく行きません。

自分で試したこと

例)

NUMが動的に変化することとします。

sprintf "groupmatchstr%d" NUM
多分上記だと文字列になっていて変数として扱われないんだと思っています。

0

1Answer

execcmndでどうでしょう?

src='Sun,Mon,Tue,Wed,Thu,Fri,Sat'
strsplit src ',' 7

for i 1 9
  sprintf 'str=groupmatchstr%d' i
  execcmnd inputstr
  messagebox str 'title'
next
0Like

Your answer might help someone💌