Assuming that string2 is Null, and not just an empty string (""), you can
take advantage of the fact that + works differently with concatenation than
&:
string1 & ("-" + string2)
If it's not null (or if it's sometimes Null but sometimes not), you'll need
something like