我正在尝试从几个文本输入中获取文本,我需要在“ while”循环中获取它们。它们的名称不同,我问您是否可以在字符串中添加不同的数字并更改从中收集数据的属性。
onEvent("next", "click", function(getData) {
while (i = 0, i <= 10)
i++;
array[i] = getProperty("Name1" //here I want to change the property name to Name(+1) so it takes info from a different property every time the loop cycles, "text");
write [i];
});
答案 0 :(得分:1)
尝试以下代码:
onEvent("next", "click", function(getData) {
while (i = 0, i <= 10)
i++;
array[i] = getProperty("name" + i , "text");
write [i];
});
答案 1 :(得分:0)
int num = 0;
string TestString1 = $"Name{num}";
string TestString2 = "Name" + num;
num++;
这里有两个带有变量的字符串,这是两种不同的方式。然后,您可以根据需要将其添加一个,也可以做任何您想做的事情。