Help for this page

Select Code to Download


  1. or download this
    like('asdf$', quotemeta('asdf$'));
    
  2. or download this
    $re = quotemeta('asdf$'); like('asdf$', qr/$re/);
    
    ...
       -or-
    
    like('asdf$', map { qr/$_/ } map quotemeta, 'asdf$');