Modifiers

m/PATTERN/gimos
/PATTERN/gimos

Modifiers
  g global 
  i case-insensitive
  m treat string as multiple lines
  s treat string as single line

With m any non-whitespace pairs of characters can be used as delimiters:

if( $name =~ m#^/home/user# )
{ 
  ...
}