Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. (?:
  2. (?! + w )
  3. [Ss]
  4. )*
  5. +
  6. ( w+ ) # (1)
  7. (?:
  8. (?! + w )
  9. [Ss]
  10. )*
  11.  
  12. Regex1: (+w+h?)|.+?
  13. Options: < none >
  14. Completed iterations: 50 / 50 ( x 1000 )
  15. Matches found per iteration: 49
  16. Elapsed Time: 2.06 s, 2056.43 ms, 2056428 µs
  17. Matches per sec: 1,191,386
  18.  
  19.  
  20. Regex2: (?:(?!+w)[Ss])*+(w+)(?:(?!+w)[Ss])*
  21. Options: < none >
  22. Completed iterations: 50 / 50 ( x 1000 )
  23. Matches found per iteration: 5
  24. Elapsed Time: 1.00 s, 997.28 ms, 997281 µs
  25. Matches per sec: 250,681
  26.  
  27. (+w+)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement