Sign in
eclipse
/
dltk
/
org.eclipse.dltk.javascript
/
64af0e8ef84523f89b67eb18425de4c5e9fc5ed8
/
.
/
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)/
;
}