- 小学一年级
- 9057445
- 26
- 0
- 52 朵
- 145 个
- 80 个
- 0
- 2023-06-08
|
1#
t
T
发表于 2024-09-11 20:24
|
|只看楼主
求高手帮我纠正,逐行读取txt,然后循环不重复输入的脚本。 它有什么不规范的地方吗?(比如,Randomize,应该写在 For UBound(Text) 之前?还是之后?似乎没有区别?)- Text = split(Plugin.File.ReadFileEx("D:\1.txt"), "|")
- For UBound(Text)
- Randomize
- Rem sj
- x1 = int((UBound(Text)*rnd))
- If instr(x2, x1) > 0 Then
- Goto sj
- Else
- x2 = x2 & x1
- SayString Text(x1)
- KeyPress "Enter", 1
- End If
- Next
复制代码
|