Sign in
eclipse
/
dltk
/
org.eclipse.dltk.javascript
/
33f8293e8f7a406dae7be353d50ae5c678b42ba0
/
.
/
tests
/
org.eclipse.dltk.javascript.formatter.tests
/
scripts.parser
/
regexp.js
blob: fe66d2fb17141ac1735b06093101540899caabe9 [
file
]
// Match one d followed by one or more b's followed by one d
// Remember matched b's and the following d
// Ignore case
function
test_regexp
()
{
var
myRe
=
/d(b+)(d)/
i
;
var
myArray
=
myRe
.
exec
(
"cdbBdbsbz"
);
var
myRe2
=
/d(b+)(d)/
;
}