标题: [问题求助] [已解决]VBS在run命令中有引号该如何处理 [打印本页]
作者: lxl13596 时间: 2009-5-16 23:19 标题: [已解决]VBS在run命令中有引号该如何处理
- set sp=createobject("wscript.shell")
- 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
- 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 标题: 十分感谢大家的回复,但我试了还是不行
- set sp=createobject("wscript.shell")
- 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
- set sp=nothing
-
- set sp=createobject("wscript.shell")
- 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
- set sp=nothing
-
- set sp=createobject("wscript.shell")
- t=""""&eol=; tokens=1,2,3,4,5,6,7,8,9,10 delims=,&""""
- 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
- set sp=nothing
-
- set sp=createobject("wscript.shell")
- t=chr(34)&"eol=; tokens=1,2,3,4,5,6,7,8,9,10 delims=,"&chr(34)
- 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
- 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 |