supernova83
Programmer
Consider I have a variable $address_combined to which I'd like to assign the result of a string concatenation.
To give a concrete example, let's say I also have a variable $owner_address which is the very string '$row->{situs_no}." ".$row->{situs_dir}." ".$row->{situs_name}' as read from a file.
What I like to obtain is a code equivalent to:
$address_combined = $row->{situs_no}." ".$row->{situs_dir}." ".$row->{situs_name}
by just using the $owner_address variable.
Is that possible?
Thank you for your time.
Mihai