Home | History | Annotate | Download | only in regexp

Lines Matching refs:match

41     // 'abcd'.match(/(abc)d/); RegExp['$+']
42 'abcd'.match(/(abc)d/);
43 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/(abc)d/); RegExp['$+']",
46 // 'abcd'.match(/(bcd)e/); RegExp['$+']
47 'abcd'.match(/(bcd)e/);
48 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/(bcd)e/); RegExp['$+']",
51 // 'abcdefg'.match(/(a(b(c(d)e)f)g)/); RegExp['$+']
52 'abcdefg'.match(/(a(b(c(d)e)f)g)/);
53 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(/(a(b(c(d)e)f)g)/); RegExp['$+']",
56 // 'abcdefg'.match(new RegExp('(a(b(c(d)e)f)g)')); RegExp['$+']
57 'abcdefg'.match(new RegExp('(a(b(c(d)e)f)g)'));
58 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('(a(b(c(d)e)f)g)')); RegExp['$+']",
61 // 'abcdefg'.match(/(a(b)c)(d(e)f)/); RegExp['$+']
62 'abcdefg'.match(/(a(b)c)(d(e)f)/);
63 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(/(a(b)c)(d(e)f)/); RegExp['$+']",
66 // 'abcdefg'.match(/(^)abc/); RegExp['$+']
67 'abcdefg'.match(/(^)abc/);
68 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(/(^)abc/); RegExp['$+']",
71 // 'abcdefg'.match(/(^a)bc/); RegExp['$+']
72 'abcdefg'.match(/(^a)bc/);
73 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(/(^a)bc/); RegExp['$+']",
76 // 'abcdefg'.match(new RegExp('(^a)bc')); RegExp['$+']
77 'abcdefg'.match(new RegExp('(^a)bc'));
78 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('(^a)bc')); RegExp['$+']",
81 // 'abcdefg'.match(/bc/); RegExp['$+']
82 'abcdefg'.match(/bc/);
83 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(/bc/); RegExp['$+']",