Using a batch script (.bat file) in windows xp, how would I go about reading a text file and finding how many instances of a character exists?

For example, I have a string with the following:

""OIJEFJ"JOIEJKAJF"""LKAJFKLJEIJ""JKLFJALKJF"LKJLKFA""""LKJKLFJLKADJF

I want it to count how many " there are in the file and return the count.

link|improve this question

And how a human would solve it? Do you can solve it for one line, or one single character? – jeb Nov 2 '11 at 17:00
@jeb can you please reiterate the question(s)? – Mechaflash Nov 2 '11 at 19:47
Now I am confused, I can't translate your comment, my English is too poor :-( – jeb Nov 2 '11 at 20:23
Not sure but maybe @jeb meant to ask whether you wanted to count every character found or every line where the character occurred. I rather guess it's the former, but I would like it to be confirmed, just to be sure. – Andriy M Nov 2 '11 at 21:06
I want to find the character count. In the case of my example, there are 13 " characters. – Mechaflash Nov 3 '11 at 14:04
feedback

1 Answer

up vote 4 down vote accepted

Let's start counting the characters in a line. First the slow and clear method:

set i=-1
set n=0
:nextChar
    set /A i+=1
    set c=!theLine:~%i%,1!
    if "!c!" == "" goto endLine
    if !c! == !theChar! set /A n+=1
    goto nextChar
:endLine
echo %n% chars found

Now the fast and cryptic method:

call :strLen "!theLine!"
set totalChars=%errorlevel%
set strippedLine=!theLine:%theChar%=!
call :strLen "!strippedLine!"
set /A n=totalChars-%errorlevel%
echo %n% chars found
goto :eof

:strLen
echo "%~1"> StrLen
for %%a in (StrLen) do set /A StrLen=%%~Za-4
exit /B %strLen%

Finally the method to count the characters in a file:

set result=0
for /F "delims=" %%a in ('findstr "!theChar!" TheFile.txt') do (
    set "theLine=%%a"
    place the fast and cryptic method here
    set /A result+=n
)
echo %result% chars found
link|improve this answer
man... i've used that method to single out characters before... can't believe I forgot it. Since I understand the "Slow" method better, I'll be using that. – Mechaflash Nov 3 '11 at 14:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.