Search found 3 matches

by seb666
22 Sep 2012 05:47
Forum: DOS Batch Forum
Topic: my own StrLen function
Replies: 22
Views: 17000

Re: my own StrLen function

@ Ed Dyreen

Understood, thank you for your answers.
by seb666
21 Sep 2012 11:15
Forum: DOS Batch Forum
Topic: my own StrLen function
Replies: 22
Views: 17000

Re: my own StrLen function

Thanks for your replies. You can use this code to test it : @ECHO OFF SET /P String=Enter a string (ex: Hello World): CALL :StrLen "%String%", Len ECHO.&ECHO Length = %Len% ECHO.&PAUSE>NUL EXIT /B :StrLen "Str", NbCar :: StrLen function compute the input string's length f...
by seb666
21 Sep 2012 04:48
Forum: DOS Batch Forum
Topic: my own StrLen function
Replies: 22
Views: 17000

my own StrLen function

Hello everybody ! I want to thank all DosTips members for their efforts and all these nice tools ! Here, i discovered how to make recursive functions in Dos ! - Priceless - I know you already made a StrLen function, but i created my own with a different method. Before knowing about these recursive f...