split text with wireless

Hi!
I have an Arduino Nano sending data over 433mhz wireless transmiter and an arduino uno receiving.

But I want to send diferent variables from the arduino nano.
Can I simply add for example: "Water_Temp_" before the water temperature and concatenate with the variable and send "Water_Temp_26" over wireless and them on the arduino uno identify the text and according to the text save the number to a diferent variable?

any example on how to do this?

thanks a lot!

You need to post your code. Please use code tags

so it looks like this

It may be easier to send the data as Comma Separated Values - for example W, 26.

It would be much easier just to send W instead of Water_Temp

The demos here and here may be useful.

...R