-批量-从单词中生成字符
我正在处理巨大的批处理文件,当用户将 Hello 写入例如:
set input =
set /p input=Type hello here:
我需要从中创建 Hell o 时,我需要这样做。 并将其保存到txt
%character_input% >hash.txt
你能帮我吗?谢谢..
I'm working on huge batch file and i need to, when user will write Hello for example to:
set input =
set /p input=Type hello here:
I need to make H e l l o from it..
and save it to txt
%character_input% >hash.txt
Can you help me please? thanks..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该批处理文件通过基本上逐个字符地处理变量来将每个字符输出在单独的行上。这应该可以帮助您开始。 :)
This batch file outputs every character on separate line by essentially processing the variable character by character. This should get you started. :)