Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
b23bfe44916eca6ef0411123d66109eecdc98e83
/
.
/
LayoutTests
/
js
/
script-tests
/
string_replace_regexp.js
blob: 49a74b151991386fe6f2d296aa2b83720bdf8d74 [
file
]
description
(
"This will test string.replace with {n, m} regexp patterns."
);
shouldBe
(
'"YY".replace(/Y{1,4}/g,"YYYY")'
,
'"YYYY"'
);
shouldBe
(
'"MM".replace(/M{1,2}/g,"M")'
,
'"M"'
);
shouldBe
(
'"YY".replace(/Y{1,4}/g,"MMMM")'
,
'"MMMM"'
);