Lines Matching full:match
26 const data = url.match(/(?<=\/)\w+(.jpg)$/);
37 // Test 3 - RegExp $1 .. $9 match the lastest successful results
44 "abc".match(/(a)/);
54 var res1 = testStr.match(pattern);
57 var res2 = testStr.match(pattern);
60 var res3 = testStr.match(pattern);
80 const match = emailRegex.exec(testString); constant
81 if (match) {
82 print("match result:", match[0]);
83 print("match start index:", match.index);
85 print("no match");