Hey gym,
Here's a basic difference:
?"01" + 1
yields: 2
?"01" & 1
yields 011
Looks like the "+" operator will attempt a data conversion with a prejudice to numeric, while "&" will do the same for string. Could make for some interesting bugs in a program.
I always use & for string concats.
Mike Pastore
Hats off to (Roy) Harper