I have a little question.
ı want string split with cmd.
Example :
emre;bahadir;131213034;computer
i want to
var1=emre
var2=bahadir
var3=131213034
var4=computer
please help me ! :)
Just use a regular FOR loop
@Echo OFF
Set "str=emre;bahadir;131213034;computer"
For %%_ In (%str%) DO (
echo %%_
)
Pause&Exit /B 0
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With