join string parameter in batch script code example
Example: concatenate strings batch
SET a = Hello
SET b = World
SET c=%a% and %b%
echo %c%
-- output --
Hello and World
SET a = Hello
SET b = World
SET c=%a% and %b%
echo %c%
-- output --
Hello and World