What is the difference between definition of string $dxyabc
and string ${dxyabc}
in Perl?
Well, it depends on the context. For example,
$foo = "$dxyabcdef";
$bar = "${dxyabc}def";
$foo
will have the value of $dxyabcdef
instead of $dxyabc
appended with def
, this is the value of $bar
.
Otherwise, as far as I know, they are the same.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With