Specifying Patterns
/Pattern/ # Literal text;
# true if it occurs anywhere in the string.
/^Pattern/ # Must occur at the beginning.
"Pattern recognition is alive" =~ /^Pattern/
\s whitespace \S non-whitespace
\w a word char. \W a non-word char.
\d a digit \D a non-digit
\b word boundary \B not word boundary