To expand on your other response, the format to string is the preferred way of formatting a long string such as in your example because it's a lot easier to see what the formatting is doing, and the code takes up a lot less space.
You especially notice the difference when you go to format a long string like an error message or a text report where you are inserting many different values.
Mike...