- or download this
"${foo}"
- or download this
"$foo"
- or download this
print qq|...contatc=|. uri_escape( $address ) .qq|...|;
- or download this
printf qq|...contatc=%s...|, uri_escape( $address );
- or download this
my $address_uri = uri_escape( $address );
print qq|...contatc=$address_uri...|;
- or download this
print qq|...contatc=${\( uri_escape( $address ) )}...|;