Help for this page

Select Code to Download


  1. or download this
       qr/^  ab\+cd   \(12\)34$/
       qr/^\s{2}[a-z]{2}\+[a-z]{2}\s{3}\(\d{2}\)\d{2}$/
       qr/^\s+[a-z]+\+[a-z]+\s+\(\d+\)\d+$/
       qr/^\s+\S+\s+\S+$/
    
  2. or download this
       $str = '  ab+cd   (12)34';
       $str = quotemeta($str);
    ...
    
       Output:
       (?i-xsm:\\s+\\s+[a-z][a-z]\+[a-z][a-z]\\s+\\s+\\s+\(\d\d\)\d\d)
    
  3. or download this
       $str = '  ab+cd   (12)34';
       $str = quotemeta($str);
    ...
    
       Output:
       (?i-xsm:\s+[a-z][a-z]\+[a-z][a-z]\s+\(\d\d\)\d\d)