delims是指定分隔符,即%i里的内容以什么字符为分界,默认是空格和Tab;
tokens是指定被分隔符分开的所有内容里取第几段,*是取所有。
如:
for /f "tokens=1,2,3 delims=c" %i in ("abcabcabcabcabc") do echo %i %j %k
就是把"abcabcabcabcabc"(不含引号)以c为分隔符,分别取出第1、2、3段并显示。
[/KH] 不知道讲清楚没有……
PS:上面那个好像不用delims也行……
以下是for的帮助:
- delims=xxx - specifies a delimiter set. This replaces the
- default delimiter set of space and tab.
- tokens=x,y,m-n - specifies which tokens from each line are to
- be passed to the for body for each iteration.
- This will cause additional variable names to
- be allocated. The m-n form is a range,
- specifying the mth through the nth tokens. If
- the last character in the tokens= string is an
- asterisk, then an additional variable is
- allocated and receives the remaining text on
- the line after the last token parsed.
- delims=xxx - 指分隔符集。这个替换了空格和跳格键的
- 默认分隔符集。
- tokens=x,y,m-n - 指每行的哪一个符号被传递到每个迭代
- 的 for 本身。这会导致额外变量名称的分配。m-n
- 格式为一个范围。通过 nth 符号指定 mth。如果
- 符号字符串中的最后一个字符星号,
- 那么额外的变量将在最后一个符号解析之后
- 分配并接受行的保留文本。