Help for this page

Select Code to Download


  1. or download this
    my $string = q/This is a test./;
    my $regex1 = qr(\bis);
    my $regex2 = qr(is);
    ...
    # prints
    is
    isis
    
  2. or download this
    $ip = qr("192.168.3.5");
  3. or download this
    my $ip = "192.168.3.5";
    $ip = quotemeta $ip;