Sign in
eclipse
/
gerrit
/
dltk
/
org.eclipse.dltk.javascript
/
4cd6af24463c51ab0a72aa1a0afb0f3bb172ac2c
/
.
/
tests
/
org.eclipse.dltk.javascript.formatter.tests
/
scripts.parser
/
regexp.js
blob: fe66d2fb17141ac1735b06093101540899caabe9 [
file
] [
log
] [
blame
]
// 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)/
;
}