错误系统找不到指定的文件
strCline = Document.getElementById("head").innerHtml
msgbox strCline
strCline = replace(strCline, " ",Chr(32))
oShell.run strCline
Set oShell = Nothing
上面的代码会产生错误,因为它无法正确读取文件名。这都是因为文件名中的空格字符。阅读后,我发现 chr(32) 会替换空格字符,但不会。我如何让它占用空间字符。
编辑:
我的最终代码看起来像这样有效。我在创建对象时犯了错误。
Sub funEdit
set oShell=createobject("Wscript.shell")
strCline = Document.getElementById("head").innerHtml
msgbox strCline
strCline = replace(strCline, " ",Chr(32))
oShell.run strCline
Set oShell = Nothing
End Sub