hi, im a newbie to dos scripting... is der a way i can concat strings?
ex. string01=Hello, string02=World
final_string=HelloWorld
CONCAT OF STRINGS
Moderator: DosItHelp
mhmanio,
Try this:
DOS IT HELP?
Try this:
Code: Select all
set string01=Hello
set string02=World
set final_string=%string01%%string02%
echo.%final_string%
DOS IT HELP?