SET java_path=\"C:\\Program Files\\Java\\jdk1.6.0_31\"
above is my string, i wa
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%
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