如何在批处理文件中的for循环中使用可变长度的子字符串?

时间:2012-01-18 16:13:35

标签: windows batch-file substring

我正在尝试在批处理文件中进行一些字符串比较和提取。该操作在SVN存储库的一组文件夹名称上进行。

for /f %%f in ('svn list https://dev_server/svn/product/branches') do ( 
    set folder=%%f 

    echo Folder: %folder%

    :: get substring from %folder% starting at 0 with a length of %length%
    :: if this substring is equal to %folderStart% then get substring from %folder% starting at position %length%   
)

这里有几个问题:

  1. 由于某种原因,%% f的值未分配给%folder%。
  2. 尽管我已经广泛搜索了网页,但我没有找到一个可变长度的子字符串解决方案。批处理文件substring函数:〜似乎只取固定的整数值。
  3. 有没有人知道如何在上面的代码中的注释部分实现这些功能?

2 个答案:

答案 0 :(得分:6)

动态子字符串很容易延迟扩展。

setlocal enableDelayedExpansion
set "string=1234567890"

::using a normal variable
set len=5
echo !string:~0,%len%!

::using a FOR variable
for /l %%n in (1 1 10) do echo !string:~0,%%n!

它也可以用于搜索和替换

答案 1 :(得分:0)

你的行

echo %folder% 

需要

echo !folder! 

希望以下显示如何进行子串

@echo off
    setlocal ENABLEDELAYEDEXPANSION

    set theString=abcd

    for %%f in (1 2 3 4) do ( 

        set pos=%%f

        call :Resolve theString:~0,!pos!

        echo !retval!

    )

goto :eof

:Resolve

  for  %%a in ("^!%*^!") do set retval=%%~a

goto :eof

给出了

a
ab
abc
abcd