Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There doesn't appear to be an easy way to get the length of a string in a batch file. E.g.,

SET MY_STRING=abcdefg
SET /A MY_STRING_LEN=???

How would I find the string length of MY_STRING?

Bonus points if the string length function handles all possible characters in strings including escape characters, like this: !%^^()^!.

share|improve this question

5 Answers

up vote 14 down vote accepted

As there is no build in function for string length, you can write yor own function.

setlocal
set "myString=abcdef!%%^^()^!"
call :strlen result myString
echo %result%
goto :eof

:strlen <resultVar> <stringVar>
(   
    setlocal EnableDelayedExpansion
    set "s=!%~2!#"
    set "len=0"
    for %%P in (4096 2048 1024 512 256 128 64 32 16 8 4 2 1) do (
        if "!s:~%%P,1!" NEQ "" ( 
            set /a "len+=%%P"
            set "s=!s:~%%P!"
        )
    )
)
( 
    endlocal
    set "%~1=%len%"
    exit /b
)

This function needs always 13 loops, instead of a simple strlen function which needs strlen-loops.
It handles all characters.

share|improve this answer
1  
Nice! There's a typo, set "s=%~2#" should be set "s=!%~2!#" to make it work – marapet Apr 30 '11 at 13:23
Your example string needs to escape special characters using the caret. this is not desirable if your function is going to be used to parse a file for example. I applaud your effort to make a batch solution, but really.... IMO, batch is not suitable for such kind of stuff. – ghostdog74 Apr 30 '11 at 15:53
@marapet: You are right, I mixed it a bit too much, but now I have corrected it – jeb Apr 30 '11 at 16:25
2  
@ghostdog74: You are also right - Batch is not a "productive" language, but for me it's fun to solve problems with batch, problems which are really easy in any other language :-) I can't see why my expample string should be escaped, the quotes should be enough, also a file reading with a FOR-LOOP can handle all special characters. – jeb Apr 30 '11 at 16:29
that's because i tried your code, and didn't give me the correct results. after i remove the carets and those special characters, then it gives me the correct results. hence i concluded that there still needs to be some escaping mechanism when the string contains special characters.. – ghostdog74 May 1 '11 at 1:50
show 3 more comments

You can do it in two lines, fully in a batch file, by writing the string to a file and then getting the length of the file. You just have to subtract two bytes to account for the automatic CR+LF added to the end.

Let's say your string is in a variable called strvar:

ECHO %strvar%> tempfile.txt
FOR %%? IN (tempfile.txt) DO ( SET /A strlength=%%~z? - 2 )

The length of the string is now in a variable called strlength.

In slightly more detail:

  • FOR %%? IN (filename) DO ( ... : gets info about a file
  • SET /A [variable]=[expression] : evaluate the expression numerically
  • %%~z? : Special expression to get the length of the file

To mash the whole command in one line:

ECHO %strvar%>x&FOR %%? IN (x) DO SET /A strlength=%%~z? - 2&del x
share|improve this answer

Yes, of course there's an easy way, using vbscript (or powershell).

WScript.Echo Len( WScript.Arguments(0) )

save this as strlen.vbs and on command line

c:\test> cscript //nologo strlen.vbs "abcd"

Use a for loop to capture the result ( or use vbscript entirely for your scripting task)

Certainly beats having to create cumbersome workarounds using batch and there's no excuse not to use it since vbscript is available with each Windows distribution ( and powershell in later).

share|improve this answer
1  
WSH can be locked down with group policies, though. – Јοеу Apr 30 '11 at 15:34
3  
So can cmd.exe if you are talking about security concerns. – ghostdog74 Apr 30 '11 at 15:42
I love this simple approach! Thank you @ghostdog74 – Nam G. VU Jun 8 '11 at 10:27
3  
There is a very good reason to use jeb's optimized batch solution instead of the VBS solution. The VBS solution is nearly 3 times slower because of the overhead of initializing VBS. But I agree the VBS solution is seductively simple. – dbenham Jun 22 '12 at 2:40

I prefer jeb's accepted answer - it is the fastest known solution and the one I use in my own scripts. (Actually there are a few additional optimizations bandied about on DosTips, but I don't think they are worth it)

But it is fun to come up with new efficient algorithms. Here is a new algorithm that uses the FINDSTR /O option:

@echo off
setlocal
set "test=Hello world!"

:: Echo the length of TEST
call :strLen test

:: Store the length of TEST in LEN
call :strLen test len
echo len=%len%
exit /b

:strLen  strVar  [rtnVar]
setlocal disableDelayedExpansion
set len=0
if defined %~1 for /f "delims=:" %%N in (
  '"(cmd /v:on /c echo(!%~1!&echo()|findstr /o ^^"'
) do set /a "len=%%N-3"
endlocal & if "%~2" neq "" (set %~2=%len%) else echo %len%
exit /b

The code subtracts 3 because the parser juggles the command and adds a space before CMD /V /C executes it. It can be prevented by using (echo(!%~1!^^^).

share|improve this answer
1  
K+1 for an interesting approach. I would add 'skip=1' and 'echo(!%~1!'. You need to subtract 3, as the echo appends here always a space at the end of each line (caused by the pipe?) – jeb Dec 18 '12 at 7:24
@jeb - good catch with echo( - the method now properly handles a string containing only white space. There is no need for SKIP, the last SET wins. I don't see much benefit to SKIP since there may be multiple line feeds in the original string. You are correct about the space. I came up with syntax that avoids the space, but didn't bother incorporating it in code. See revised answer. – dbenham Dec 18 '12 at 12:46

I like the two line approach of jmh_gr.

It won't work with single digit numbers unless you put () around the portion of the command before the redirect. since 1> is a special command "Echo is On" will be redirected to the file.

This example should take care of single digit numbers but not the other special characters such as < that may be in the string.

(ECHO %strvar%)> tempfile.txt
share|improve this answer
But this does not solve the problem for content like: <empty var>, ON, OFF or /?. Or try it with set strvar=^&"& – jeb Sep 19 '12 at 6:12
@jeb (ECHO "%strvar%")> tempfile.txt should work for all. your last example set... does not work even in your script (double quote inside). And I think with quotes we don not even need () anymore. – Mat M Sep 24 '12 at 23:31
The sample will work, as delayed expansion is not affected by special characters. And quoting the "%strvar%" can't help for the content &"& – jeb Sep 25 '12 at 6:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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