We can use scalar variables in strings
-
$h= "World"; $hw= "Hello $h"; # sets $hw to "Hello World"
-
$h= "World"; $hw= "\UHello $h"; # sets $hw to "HELLO WORLD"
-
showing how \U and similarly \L operate on interpolated variables
|
Remember, there is NO interpolation for single-quoted strings!
|
There is also no recursion as illustrated below:
|
$fred= "You over there"; $x= '$fred'; $y= "Hey $x"; # sets $y as 'Hey $fred' with no interpolation
|
Use \$ to ensure no interpolation where you need literal $ character
-
$fred= "You over there"; $y= "Hey \$fred"; # sets $y as "Hey $fred" with no interpolation whereas:
-
$fred= "You over there"; $y= "Hey $fred"; # sets $y as "Hey You over there" with interpolation
|
Use ${var} to remove ambiguity as in
-
$y= "Hey ${fred}followed by more characters";
|