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