Option Explicit
Public Sub Main(): If Con.Initialize = conLaunchExplorer Then Con.Visible = False
Dim strParameters As String
Dim readL As String
strParameters = Split(Command$, "/")
Con.WriteLine strParamers
readL = Con.ReadLine
End Sub
这是现在的代码,因为您可以看到我试图拆分strParameters,但错误说不匹配请帮帮我。
答案 0 :(得分:2)
当拆分字符串时,数据将放在一个数组中,根据您的声明strParameters
是一个简单的字符串。不同的部分如何适合一个字符串?您只需要按照以下方式更改声明;
Dim strParameters() As String
假设您的Command $被正确声明为字符串,并带有分隔符"/"