How to split string using batch file?

13,512

Solution 1

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

Solution 2

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%
Share:
13,512
Bobby Rachel
Author by

Bobby Rachel

Updated on June 04, 2022

Comments

  • Bobby Rachel
    Bobby Rachel almost 2 years
    • 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?