Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
      $text =~ s/%(\w)%/$hash->{$1}/g;
      return $text;
    }
    
  2. or download this
    using System;
    using System.Collections;
    ...
            return (string)hash[m.Groups["templ"].Value];
        } 
    }