How do you read a string of characters in dos

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
groveera
Posts: 1
Joined: 29 Mar 2013 00:53

How do you read a string of characters in dos

#1 Post by groveera » 03 May 2013 15:14

How do you read a string of characters in dos that contains quotation marks?
I'm using the dos find command and I was to find something that has a quote within it.
_____________________
things to do in au ~ things to do with australia
Last edited by groveera on 05 May 2013 23:36, edited 1 time in total.

Endoro
Posts: 244
Joined: 27 Mar 2013 01:29
Location: Bozen

Re: How do you read a string of characters in dos

#2 Post by Endoro » 03 May 2013 15:33

I can read it with a for loop.

foxidrive
Expert
Posts: 6031
Joined: 10 Feb 2012 02:20

Re: How do you read a string of characters in dos

#3 Post by foxidrive » 03 May 2013 22:56

Code: Select all

findstr \" file.txt

Post Reply