2
0

fastRegexCaptures.baseline 1.4 KB

123456789101112131415161718192021222324
  1. exec(/.*(aaa.*aaa)/ /*lastIndex=0*/ , "aaaaaa");
  2. ["aaaaaa","aaaaaa"] /*input="aaaaaa", index=0*/
  3. r.lastIndex=0
  4. RegExp.${_,1,...,9}=["aaaaaa","aaaaaa","","","","","","","",""]
  5. exec(/.*a(.*aaa.*)a.*/ /*lastIndex=0*/ , "aaaaa");
  6. ["aaaaa","aaa"] /*input="aaaaa", index=0*/
  7. r.lastIndex=0
  8. RegExp.${_,1,...,9}=["aaaaa","aaa","","","","","","","",""]
  9. exec(/.*(\.facebook\..*)/ /*lastIndex=0*/ , "www.facebook.com");
  10. ["www.facebook.com",".facebook.com"] /*input="www.facebook.com", index=0*/
  11. r.lastIndex=0
  12. RegExp.${_,1,...,9}=["www.facebook.com",".facebook.com","","","","","","","",""]
  13. exec(/.*(aamber aamber aamber)/ /*lastIndex=0*/ , "aamber aamber aamber.");
  14. ["aamber aamber aamber","aamber aamber aamber"] /*input="aamber aamber aamber.", index=0*/
  15. r.lastIndex=0
  16. RegExp.${_,1,...,9}=["aamber aamber aamber.","aamber aamber aamber","","","","","","","",""]
  17. exec(/.*(this (is this is) this)/ /*lastIndex=0*/ , "this is this is this");
  18. ["this is this is this","this is this is this","is this is"] /*input="this is this is this", index=0*/
  19. r.lastIndex=0
  20. RegExp.${_,1,...,9}=["this is this is this","this is this is this","is this is","","","","","","",""]
  21. exec(/.*(this is top tier toy)/ /*lastIndex=0*/ , "this is top tier toy");
  22. ["this is top tier toy","this is top tier toy"] /*input="this is top tier toy", index=0*/
  23. r.lastIndex=0
  24. RegExp.${_,1,...,9}=["this is top tier toy","this is top tier toy","","","","","","","",""]