【批处理】求取字符串长度


 1 @echo off 
 2 set /p str=请输入任意长度字符串:
 3 if not defined str goto :eof
 4 echo 您输入了:%str%
 5 set num=0
 6 :label
 7 set /a num+=1
 8 set str=%str:~0,-1%
 9 if defined str goto :label
10 echo 字符串长度:%num%
11 pause
View Code

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM