I have string in batch file and I want only last part or after specific keyword. My code is :
@ECHO OFF
Set path =%~dp0
echo %path %
PAUSE
Suppose the Path is c:\x\y\z\
How can I extract only z or string(s) after y.
I have string in batch file and I want only last part or after specific keyword. My code is :
@ECHO OFF
Set path =%~dp0
echo %path %
PAUSE
Suppose the Path is c:\x\y\z\
How can I extract only z or string(s) after y.