Concate String in Batch File

  • Thread starter Thread starter sbubendorf
  • Start date Start date
S

sbubendorf

I have two variables (parsed substrings)which I need to
combine. fldrnameA=9 fldrnameB=999 fldrname=9999
Can anyone tell me how to combine the two into one using
a batch file? THANK YOU !!!
 
I have two variables (parsed substrings)which I need to
combine. fldrnameA=9 fldrnameB=999 fldrname=9999
Can anyone tell me how to combine the two into one using
a batch file? THANK YOU !!!

Hi

set fldrname=%fldrnameA%%fldrnameB%
 
Back
Top