Help for this page

Select Code to Download


  1. or download this
    #---------------------------------------------------------------------
    +-
    # Here is the fundamental code to match JavaScript code.
    ...
        ( $regexJSCode ) | $regexJSComments
    }{$1}gsx;
    
  2. or download this
    function test (str) {
        // A comment.
        alert ("test");    
    ...
        }
    
    }
    
  3. or download this
    function test (str) {
            alert ("test");
            var reForwardSlash = /\
    ...
                    return true;
            }
    }
    
  4. or download this
    function test (str) {
        // A comment.
    
    ...
        }
    
    }
    
  5. or download this
    function test (str) {
            var reForwardSlash = /\//;
            var reBackslash = /\\/;
    ...
                    return true;
            }
    }