Help for this page

Select Code to Download


  1. or download this
    /[A-Z]{2,}/
    
  2. or download this
    /([A-Z]{2,})\s+([A-Z]{2,})/
    
  3. or download this
    if (exists $ids{JON_DOE}) { # found it, use old
        s/JON DOE/$ids{JON_DOE};
    ...
        $ids{JON_DOE} = "UNIQUEID_$i";
        $i++;
    }