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