DOS批处理脚本转换字符串2十六进制

2023-12-26

如何在 DOS 批处理脚本中将字符串转换为十六进制? 例如,将“abcd”转换为“61626364”。 因为“a”是 0x61...

我尝试从网络上寻找解决方案,一天,但找不到我的答案。


@echo off
setlocal EnableDelayedExpansion

rem Store the string in chr.tmp file
set /P "=%~1" < NUL > chr.tmp

rem Create zero.tmp file with the same number of Ascii zero characters
for %%a in (chr.tmp) do fsutil file createnew zero.tmp %%~Za > NUL

rem Compare both files with FC /B and get the differences
set "hex="
for /F "skip=1 tokens=2" %%a in ('fc /B chr.tmp zero.tmp') do set "hex=!hex!%%a"

del chr.tmp zero.tmp
echo %hex%

输出示例:

C:\> test.bat abcd
61626364
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

DOS批处理脚本转换字符串2十六进制 的相关文章

随机推荐