Search found 1 match

by melliott
06 Feb 2008 13:13
Forum: DOS Batch Forum
Topic: How do I specify the " character as a delimiter in FOR
Replies: 2
Views: 7477

How do I specify the " character as a delimiter in FOR

I want to parse a string with FOR /F where the delimiter character is the double-quote character (i.e. ") for example, the contentes of C:\temp.out is: name = "Joe" I want to use something like FOR /F "tokens=1,2 delims=^"" %%I in (temp.out) do @echo =%%J and I'd like i...