字符串在批处理脚本中解析

时间:2016-01-28 13:42:20

标签: batch-file batch-processing

我有以下字符串输出

cpu=

我需要解析并获取与之关联的物理路径。 在这种情况下,它是D:\ New文件夹(2),那么如何在批处理脚本中获取变量中的物理路径。

1 个答案:

答案 0 :(得分:1)

set "string=VDIR "WorkFlowWebApp/Test/" (physicalPath:D:\New folder (2))"
rem get relevant part:
set "physp=%string:*physicalPath:=%"
rem remove last char:
set "physp=%physp:~0,-1%"
echo %physp%