Help for this page

Select Code to Download


  1. or download this
    s/\@(.*?)\@/ ... /g;
    
  2. or download this
    s<\@(.*?)\@>{ ... }ge;
    
  3. or download this
    while(<>) {
        s/\@(.*?)\@/ subst($1) /ge;
    ...
        $s =~ s/([a-eA-C])/$r{$1}/g;
        return $s;
    }
    
  4. or download this
        s/\@(.*)\@/ subst($1) /ge;