Board logo

标题: [问题求助] [已解决]VBS在run命令中有引号该如何处理 [打印本页]

作者: lxl13596    时间: 2009-5-16 23:19     标题: [已解决]VBS在run命令中有引号该如何处理

  1. set sp=createobject("wscript.shell")
  2. sp.run=("%comspec% /c for /d %%d in (*) do cd  d:\%%d & for /f "eol=; tokens=1,2,3,4,5,6,7,8,9,10 delims=," %%c in (d:\list.txt) do eraser %%c.jpg),0,true
  3. set sp=nothing
复制代码

作者: slore    时间: 2009-5-17 23:44

" 需要转义为""

msgbox "我是""引号""。。。"
作者: Batcher    时间: 2009-5-17 23:50

VBS怎样给变量加引号
http://bbs.bathome.net/viewthread.php?tid=4369
作者: lxl13596    时间: 2009-5-18 19:27     标题: 十分感谢大家的回复,但我试了还是不行

  1. set sp=createobject("wscript.shell")
  2. sp.run "%comspec% /c for /d %%d in (*) do cd d:\%%d & for /f ""eol=; tokens=1,2,3,4,5,6,7,8,9,10 delims=,"" %%c in (d:\list.txt) do erase %%c.jpg",0,true
  3. set sp=nothing
  4. set sp=createobject("wscript.shell")
  5. sp.run "%comspec% /c for /d %%d in (*) do cd d:\%%d & for /f """eol=; tokens=1,2,3,4,5,6,7,8,9,10 delims=,""" %%c in (d:\list.txt) do erase %%c.jpg",0,true
  6. set sp=nothing
  7. set sp=createobject("wscript.shell")
  8. t=""""&eol=; tokens=1,2,3,4,5,6,7,8,9,10 delims=,&""""
  9. sp.run "%comspec% /c for /d %%d in (*) do cd d:\%%d & for /f "&t&" %%c in (d:\list.txt) do erase %%c.jpg",0,true
  10. set sp=nothing
  11. set sp=createobject("wscript.shell")
  12. t=chr(34)&"eol=; tokens=1,2,3,4,5,6,7,8,9,10 delims=,"&chr(34)
  13. sp.run "%comspec% /c for /d %%d in (*) do cd d:\%%d & for /f "&t&" %%c in (d:\list.txt) do erase %%c.jpg",0,true
  14. set sp=nothing
复制代码
这几种都不行,请大伙再帮帮忙,谢谢大家了,原大家好运常伴!
作者: slore    时间: 2009-5-19 10:30

字符串中的引号变成2个。。。。

我不知道你怎么变的,第一行还对着呢,后面的就一个变3个
作者: newxso    时间: 2009-5-19 11:40

就算楼主把所有引号用对,也不能正常执行,因为 for 语句中指定变量在命令行中是用单个 % ,在批处理中才用两个 % 。
作者: gittywang    时间: 2009-8-13 11:00

引号用Chr(34)来试试呢?




欢迎光临 批处理之家 (http://bathome.net./) Powered by Discuz! 7.2