How to split string using batch file?

2020-04-14 03:41发布

  • How to split string using batch script?

SET java_path="C:\Program Files\Java\jdk1.6.0_31"

above is my string, i want only "C:\Program Files" from java_path. how to get it?

2条回答
看我几分像从前
2楼-- · 2020-04-14 03:49

You may split strings by character position:

ECHO %java_path:~1,16%

or by splitting at specific characters:

FOR /F "DELIMS=\ TOKENS=1,2" %i IN (%java_path%) DO ECHO %i\%j

查看更多
ら.Afraid
3楼-- · 2020-04-14 03:50

try this:

@ECHO OFF &SETLOCAL
SET "java_path=C:\Program Files\Java\jdk1.6.0_31"
SET "this=%java_path:~3%"
SET "this=%this:*\=%"
CALL SET "this=%%java_path:%this%=%%"
SET "this=%this:~0,-1%"
ECHO %this%
查看更多
登录 后发表回答