String Operations
"string1" . "string2" # concatenation
Can also be done using interpolation:
$str1 = "abc";
$str2 = "def";
$newstr = "$str1$str2";
Previous slide
Next slide
Back to first slide
View graphic version