|
stornager
中级用户
   scriptlover
积分 328
发帖 131
注册 2007-3-25
状态 离线
|
『第 31 楼』:
楼主真强
使用 LLM 解释/回答一下
我要争取赶上楼主,谢谢啦!
I will strive to catch up with the original poster, thank you!
|
|
2007-3-26 06:20 |
|
|
lxmxn
版主
       
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
『第 32 楼』:
使用 LLM 解释/回答一下
Originally posted by stornager at 2007-3-25 17:20:
我要争取赶上楼主,谢谢啦!
呵呵,但愿如此~
Originally posted by stornager at 2007-3-25 17:20:
I want to strive to catch up with the original poster, thank you!
Hehe, I hope so~
|
|
2007-3-27 00:17 |
|
|
lp1129
初级用户
 
积分 186
发帖 92
注册 2007-3-27
状态 离线
|
|
2007-3-28 00:14 |
|
|
9306516
新手上路

积分 13
发帖 5
注册 2007-4-14
状态 离线
|
『第 34 楼』:
使用 LLM 解释/回答一下
答案暗暗暗暗暗暗暗暗
The answer is dark, dark, dark, dark, dark, dark, dark
|
|
2007-4-14 09:08 |
|
|
tongwandou
初级用户
 
积分 112
发帖 50
注册 2007-4-15
状态 离线
|
『第 35 楼』:
使用 LLM 解释/回答一下
这种教法太好了,我也基本上会提取了,但是不知道有什么实用的价值?
This teaching method is great. I can basically extract it, but I don't know what practical value it has?
|
|
2007-4-19 11:52 |
|
|
lxmxn
版主
       
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
『第 36 楼』:
使用 LLM 解释/回答一下
Re tongwandou:
实用价值可大呢。比如你可以提取一个字符串的前3个字符,或者后5个字符,或者第10到第20个字符,很多都可以用到。
Regarding tongwandou:
The practical value is quite significant. For example, you can extract the first 3 characters of a string, or the last 5 characters, or the characters from the 10th to the 20th, and many of these can be applied.
|
|
2007-4-19 13:16 |
|
|
minmin888
初级用户
 
积分 127
发帖 62
注册 2007-4-19
状态 离线
|
|
2007-5-8 20:57 |
|
|
8250
新手上路

积分 12
发帖 6
注册 2006-3-29
状态 离线
|
『第 38 楼』:
使用 LLM 解释/回答一下
Originally posted by lxmxn at 2007-1-16 04:39:
goto :eof 如果在一个标签里面,那么就表示跳出此标签,如果在批处理程序其它的位置,表示跳转到批处理程序的结尾出,就表示退出批程序。
首先感谢版主的分享。
其次请教一个问题:
:eof是否是一个特殊的标签和一般普通的标签不同?
Originally posted by lxmxn at 2007-1-16 04:39:
goto :eof If it is inside a label, it means to jump out of this label. If it is in other positions of the batch program, it means to jump to the end of the batch program, which means to exit the batch program.
First of all, thank you to the moderator for sharing.
Secondly, I would like to ask a question:
Is :eof a special label different from ordinary labels?
|
|
2007-5-9 09:31 |
|
|
bing614
初级用户
 
积分 44
发帖 20
注册 2007-5-2
状态 离线
|
『第 39 楼』:
使用 LLM 解释/回答一下
不错,又学到一招,多谢楼主。
Not bad, learned another trick, thanks to the landlord.
|
|
2007-5-9 11:05 |
|
|
lxmxn
版主
       
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
『第 40 楼』:
使用 LLM 解释/回答一下
Originally posted by 8250 at 2007-5-9 09:31:
首先感谢版主的分享。
其次请教一个问题:
:eof是否是一个特殊的标签和一般普通的标签不同?
:EOF 一般和 goto 命令在一起使用,表示 End Of File ,意即文件的末尾。
如果这个 goto :EOF 在一个批处理文件中,表示跳到文件尾,可以理解成退出批处理,如果 goto :EOF 在一个批处理脚本程序的标签程序中,那么就退出当前的标签,回到批处理脚本程序中来。
你可以通过一些练习来理解它的作用。
Originally posted by 8250 at 2007-5-9 09:31:
First of all, thank you to the moderator for sharing.
Secondly, I would like to ask a question:
Is :eof a special tag different from ordinary tags?
:EOF is generally used together with the goto command, which means End Of File, that is, the end of the file.
If this goto :EOF is in a batch file, it means jumping to the end of the file, which can be understood as exiting the batch processing. If goto :EOF is in a label program of a batch script program, then it exits the current label and returns to the batch script program.
You can understand its function through some exercises.
|
|
2007-5-9 13:29 |
|
|
flyinspace
银牌会员
    
积分 1206
发帖 517
注册 2007-3-25
状态 离线
|
『第 41 楼』:
使用 LLM 解释/回答一下
Originally posted by lxmxn at 2007-5-9 01:29 PM:
:EOF 一般和 goto 命令在一起使用,表示 End Of File ,意即文件的末尾。
如果这个 goto :EOF 在一个批处理文件中,表示跳到文件尾,可以理解成退出批 ...
可以通过 call /? 和 goto /? 来学习这个。。
Originally posted by lxmxn at 2007-5-9 01:29 PM:
:EOF generally works together with the goto command, meaning End Of File, that is, the end of the file.
If this goto :EOF is in a batch file, it means jumping to the end of the file, which can be understood as exiting the batch...
You can learn about this by using call /? and goto /?
|

知,不觉多。不知,乃求知 |
|
2007-5-9 13:31 |
|
|
yh6688
初级用户
 
积分 20
发帖 12
注册 2007-6-1
状态 离线
|
|
2007-6-1 13:11 |
|
|
enliang
初级用户
 
积分 62
发帖 24
注册 2007-3-17
状态 离线
|
|
2007-6-16 11:04 |
|
|
bd123456789
中级用户
  
积分 360
发帖 216
注册 2007-5-29
状态 离线
|
『第 44 楼』:
使用 LLM 解释/回答一下
太好了,感谢指导!
不过,得请教一个问题:
pause>nul
是什么意思???
另外,为什么要启用"延迟的环境变量扩展"
它有什么用???
Great, thank you for the guidance!
However, I need to ask a question:
What does "pause>nul" mean???
Also, why enable "delayed environment variable expansion"
What is its use???
|
|
2007-6-17 10:42 |
|
|
tbs198400
初级用户
 
积分 46
发帖 22
注册 2006-8-6 来自 郑州
状态 离线
|
『第 45 楼』:
使用 LLM 解释/回答一下
呵呵,楼主一不小心就急我之所急了。太精彩了。
Hehe, the original poster accidentally met my urgent needs. It's wonderful.
|
|
2007-6-17 11:04 |
|