gpt4 book ai didi

string - MS-DOS 8.0 : Determine String Length?

转载 作者:行者123 更新时间:2023-12-01 11:07:17 31 4
gpt4 key购买 nike

使用 MS-DOS 8.0,确定字符串长度的最佳方法是什么?

我浏览了 Computer Hope (http://www.computerhope.com/msdos.htm),但没有命令跳到我...

是否有内置命令或必须构建函数来解决这个问题?

非常感谢。

最佳答案

来自 here我得到了一个例子,这是它清理了一点

@echo off
setlocal
set #=%1
set length=0
:loop
if defined # (set #=%#:~1%&set /A length += 1&goto loop)
echo %1 is %length% characters long!
endlocal

alt text

关于string - MS-DOS 8.0 : Determine String Length?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4103134/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com