gpt4 book ai didi

c++ - 我如何在 AutoIt 中访问像数组一样的字符串? (我正在将代码从 C++ 移植到 AutoIt)

转载 作者:行者123 更新时间:2023-11-28 01:08:52 25 4
gpt4 key购买 nike

好的,哎呀,这里有语法转换问题...我该如何在 AutoIt 中执行此操作?

String theStr = "Here is a string";
String theNewStr = "";

for ( int theCount = 0; theCount < theStr.Size(); theCount++ )
{
theNewStr.Append(theStr[theCount]);
}

我试图在 AutoIt 中访问字符串中的单个字符并提取它们。就是这样。谢谢。

最佳答案

这个怎么样:

$theStr = StringSplit("Here is a string", "") ; Create an array
$theNewStr = ""

For $i = 1 to $theStr[0] Step 1
$theNewStr = $theNewStr & $theStr[$i]
Next
MsgBox(0, "Result", $theNewStr)

关于c++ - 我如何在 AutoIt 中访问像数组一样的字符串? (我正在将代码从 C++ 移植到 AutoIt),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4597006/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com