Board logo

标题: [文本处理] [已解决]批处理中关于call变量延迟 [打印本页]

作者: laiu888    时间: 2015-9-13 20:19     标题: [已解决]批处理中关于call变量延迟

本帖最后由 laiu888 于 2015-9-13 21:22 编辑

1.
  1.    
  2.    @echo off
  3.     set "str=一二三四五六日"
  4.     set /a num=%random%%%7
  5.     call echo 星期%%str:~%num%,1%%
  6.     pause>nul
复制代码
2.
  1.    
  2.     @echo off
  3.     setlocal enabledelayedexpansion
  4.     set "str=日一二三四五六"
  5.     set /a pp=%random%%%7
  6.     echo  星期!str:~%pp%,1!
  7.     pause>nul
复制代码
对于这两组处理,显示的结果都是一样,对于这句“星期%%str:~%num%,1%%”就是一个单句又不是复合句,因此搞不懂为什么第一个要开启变量延迟而调用call?
假如对第一个处理改为下面的格式,为什么不对?
  1.    
  2.    @echo off
  3.     set "str=一二三四五六日"
  4.     set /a num=%random%%%7
  5.     set /a str1=星期%str:~%num%,1%
  6.     echo %str1%
  7.     pause>nul
复制代码
研究了好长时间总是搞不懂,麻烦高人指点一下,感激不尽
作者: bailong360    时间: 2015-9-13 20:24

http://www.bathome.net/thread-2898-1-1.html
http://www.bathome.net/thread-354-1-1.html
http://www.bathome.net/thread-2899-1-1.html
http://www.bathome.net/thread-3349-1-1.html
http://www.bathome.net/redirect.php?tid=3768&goto=lastpost
一股脑儿发上来
作者: 尘丶    时间: 2015-9-13 20:29

首先你这句就是错的set /a str1=星期%str:~%num%,1%
set /a 是计算变量的
复合句都开启变量你这个好像是变量嵌套2个变量要用call,echo或者开启变量延迟才可以
如果你不进行延迟他就不会再一步扩展,这个你得多练才可以弄懂,概念比较复杂
具体链接
http://www.jb51.net/article/29323.htm
http://bbs.bathome.net/thread-2898-1-1.html
http://www.bathome.net/thread-5814-1-6.html
作者: 回家路上    时间: 2015-9-13 20:45

简单说,使用
  1. call echo 星期%%str:~%num%,1%%
复制代码
时候,%%解析为一体,和后面的%%对应。
这个写法呢?
  1. str1=星期%str:~%num%,1%
复制代码
你觉得应该这其中的“%”谁和谁对应。该怎么解析?
电脑解析不对当然就不能好好执行了
作者: pcl_test    时间: 2015-9-13 20:47

因为在批处理里中,未开启变量延迟,变量是诸如%x%这样的字符对,你的代码
set str1=星期%str:~%num%,1%
在批处理预处理时解析成 星期+%str:~0%+num+%,1%了,为了让批处理能正确解析,故使用了变量延迟,让批处理预处理先解析%num%,之后再是解析%str:~数字,1%
  1. @echo off
  2. set ",1=哈哈"
  3. set "str=一二三四五六日"
  4. set /a num=%random%%%7
  5. echo %str:~0%
  6. set str1=星期%str:~%num%,1%
  7. echo %str1%
  8. pause
复制代码

作者: laiu888    时间: 2015-9-13 21:14

回复 5# pcl_test


    感谢pcl_test,这几天好好学习下这块
作者: laiu888    时间: 2015-9-13 21:16

回复 2# bailong360


感谢,再好好学习下
作者: laiu888    时间: 2015-9-13 21:18

回复 3# 尘丶


    恩,谢谢啊,继续学习
作者: laiu888    时间: 2015-9-13 21:20

回复 4# 回家路上


    感觉明白了一些,谢谢啊




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