Home | History | Annotate | Download | only in js

Lines Matching refs:abc

30 shouldBe('s.match(/^abc/)', '["abc"]');
31 shouldBe('s.match(/(^|X)abc/)', '["abc",""]');
33 shouldBe('s.match(/(^abc|c)123/)', '["abc123","abc"]');
34 shouldBe('s.match(/(c|^abc)123/)', '["abc123","abc"]');
35 shouldBe('s.match(/(^ab|abc)123/)', '["abc123","abc"]');
36 shouldBe('s.match(/(bc|^abc)([0-9]*)a/)', '["bc789a","bc","789"]');
37 shouldBeNull('/(?:(Y)X)|(X)/.exec("abc")');
38 shouldBeNull('/(?:(?:^|Y)X)|(X)/.exec("abc")');