Help for this page
print "Matches!" if "hello" =~ m/he/;
($foo = "hello") .= " world"; # or $foo = "hello"; $foo .= " world";
$foo = "hello world";