serial.print()

Hi all

how do I use serial.print() function to send a compound value like a string + a value of some some register or port
like serial.print("reg1 is" , reg1)
or maybe the question is how i turn a register or address value into a compound string that will be used by
serial.print()
That compound string might be "reg1 is" + reg1value ?

reff http://arduino.cc/en/Serial/Print

Thanks
Elico

Generally speaking, you don't. You just do multiple Serial.print() commands. You can use sprintf(), if you really want to only use one Serial.print().

Two separate Serial.print() statements.