Search found 3 matches

by foremore
08 Feb 2011 12:51
Forum: DOS Batch Forum
Topic: Parse or string minipulating after last "\"
Replies: 6
Views: 7270

Re: Parse or string minipulating after last "\"

:oops:

thanks. Still learning. But thank you a ton for the help.
by foremore
08 Feb 2011 12:16
Forum: DOS Batch Forum
Topic: Parse or string minipulating after last "\"
Replies: 6
Views: 7270

Re: Parse or string minipulating after last "\"

awesome! thanks for the help. I thought I would get it figured out from here but I got loused up on another part. Here is my code: SetLocal EnableDelayedExpansion Set InputFile=locations.txt For /F "tokens=* Delims=" %%I IN ('Type "%InputFile%"') DO ( for /f "delims=" %...
by foremore
08 Feb 2011 10:28
Forum: DOS Batch Forum
Topic: Parse or string minipulating after last "\"
Replies: 6
Views: 7270

Parse or string minipulating after last "\"

lets say create a string and name it a folder path. How do I take whats in that string and parse out just whats after the last "\"? here is what I am trying to figure out: set temp=C:\test local\test last parse\test folder set temp2=C:\test local2\test another parse\another test folder :: ...