Help for this page

Select Code to Download


  1. or download this
    $strOutput =~ s{                 # First, we'll list things we want 
                                        # to match, but not throw away
    ...
        )
            
    }{$1}gsx;
    
  2. or download this
    $strOutput =~ s{                 # First, we'll list things we want 
                                        # to match, but not throw away
    ...
            
    }{$1}gsx;
    
  3. or download this
    /*====================================================================
    +=======
    ' Subroutine:    None
    ...
    /*
    Test1
    */
    
  4. or download this
    function SimpleHTMLEncode (strHTMLToEncode) {
        var strOutput = strHTMLToEncode;
    ...
        var reSearch = mystring.search(objRegex);            
        var reSplit = mystring.split("\\");                               
    + 
    }