在命令提示符中修剪输出

时间:2014-09-27 14:41:50

标签: batch-file command-prompt

更新:问题得到解决。 :)

我想在Windows命令提示符中修剪变量值。

我用过 -

set str=sourav
echo %str:~0,3%

如在线教程中所述。

output-- SOU

有人可以解释这是如何工作的吗?我的意思是结肠和〜是如何在这里工作的?

1 个答案:

答案 0 :(得分:1)

(在评论中回答。见Question with no answers, but issue solved in the comments (or extended in chat)

@foxidrive写道:

  

在cmd提示符下键入set /?并阅读帮助。它在那里解释。

@mofi注意到它的副本:

  

What is the best way to do a substring in a batch file?