| 123456789101112131415161718192021222324252627282930313233343536 |
- exec(/(a|ab)/ /*lastIndex=0*/ , "ab");
- ["a","a"] /*input="ab", index=0*/
- r.lastIndex=0
- RegExp.${_,1,...,9}=["ab","a","","","","","","","",""]
- exec(/(ab|a)/ /*lastIndex=0*/ , "ab");
- ["ab","ab"] /*input="ab", index=0*/
- r.lastIndex=0
- RegExp.${_,1,...,9}=["ab","ab","","","","","","","",""]
- match(/(aaab|aaa)/ /*lastIndex=0*/ , "aaabab");
- ["aaab","aaab"] /*input="aaabab", index=0*/
- r.lastIndex=0
- RegExp.${_,1,...,9}=["aaabab","aaab","","","","","","","",""]
- match(/(aaa|aaab)/ /*lastIndex=0*/ , "aaabab");
- ["aaa","aaa"] /*input="aaabab", index=0*/
- r.lastIndex=0
- RegExp.${_,1,...,9}=["aaabab","aaa","","","","","","","",""]
- match(/(a|ab)*/ /*lastIndex=0*/ , "abab");
- ["a","a"] /*input="abab", index=0*/
- r.lastIndex=0
- RegExp.${_,1,...,9}=["abab","a","","","","","","","",""]
- match(/((a|ab)*)?/ /*lastIndex=0*/ , "abab");
- ["a","a","a"] /*input="abab", index=0*/
- r.lastIndex=0
- RegExp.${_,1,...,9}=["abab","a","a","","","","","","",""]
- match(/(a|ab)?/ /*lastIndex=0*/ , "abab");
- ["a","a"] /*input="abab", index=0*/
- r.lastIndex=0
- RegExp.${_,1,...,9}=["abab","a","","","","","","","",""]
- exec(/(p\/.*)?(.*)/ /*lastIndex=0*/ , "p/u");
- ["p/u","p/u",""] /*input="p/u", index=0*/
- r.lastIndex=0
- RegExp.${_,1,...,9}=["p/u","p/u","","","","","","","",""]
- match(/(([^:]*):\/\/([^:\/?]*)(:([0-9]+))?)?([^?#]*)([?]([^#]*))?(#(.*))?/ /*lastIndex=0*/ , "http://shop.ebay.com/i.html?rt=nc&LH_FS=1&_nkw=dell+optiplex&_fln=1&_trksid=p3286.c0.m283");
- ["http://shop.ebay.com/i.html?rt=nc&LH_FS=1&_nkw=dell+optiplex&_fln=1&_trksid=p3286.c0.m283","http://shop.ebay.com","http","shop.ebay.com",undefined,undefined,"/i.html","?rt=nc&LH_FS=1&_nkw=dell+optiplex&_fln=1&_trksid=p3286.c0.m283","rt=nc&LH_FS=1&_nkw=dell+optiplex&_fln=1&_trksid=p3286.c0.m283",undefined,undefined] /*input="http://shop.ebay.com/i.html?rt=nc&LH_FS=1&_nkw=dell+optiplex&_fln=1&_trksid=p3286.c0.m283", index=0*/
- r.lastIndex=0
- RegExp.${_,1,...,9}=["http://shop.ebay.com/i.html?rt=nc&LH_FS=1&_nkw=dell+optiplex&_fln=1&_trksid=p3286.c0.m283","http://shop.ebay.com","http","shop.ebay.com","","","/i.html","?rt=nc&LH_FS=1&_nkw=dell+optiplex&_fln=1&_trksid=p3286.c0.m283","rt=nc&LH_FS=1&_nkw=dell+optiplex&_fln=1&_trksid=p3286.c0.m283",""]
|