计算机字符串的长度

判断你写了多少个字符

 

  
  
  
  
  1. @echo off  
  2. set mystr=  
  3. set /p mystr=输入要计算长度的字符串(直接回车退出):  
  4. if not defined mystr goto :eof  
  5. set count=0  
  6. setlocal enabledelayedexpansion  
  7. :intercept  
  8. set /a count+=1  
  9. for /f %%i in ("%count%") do if not "!mystr:~%%i,1!"=="" goto intercept  
  10. echo 长  度:  %count%  
  11. pause  
  12. goto :eof 

 

你可能感兴趣的:(职场,bat,休闲)