我有一个小问题。
我想用cmd分割字符串。
例子 :
emre;bahadir;131213034;computer
我想要
var1=emre
var2=bahadir
var3=131213034
var4=computer
请帮我 ! :)
最佳答案
只需使用常规的FOR
循环
@Echo OFF
Set "str=emre;bahadir;131213034;computer"
For %%_ In (%str%) DO (
echo %%_
)
Pause&Exit /B 0
关于string - 如何使用CMD拆分字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33661651/