Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <div>
  2. Blah blah
  3. <div class='myClass'>
  4. <div>some other div</div>
  5. </div>
  6. </div>
  7.  
  8. <div>
  9. Blah blah
  10. <div class='myClass'>
  11. more text
  12. </div>
  13. </div>
  14.  
  15. <div>
  16. Blah blah
  17. <div class='myClass'>
  18. more text
  19. </div>
  20. </div>
  21.  
  22. <div>
  23. Blah blah
  24.  
  25. </div>
  26.  
  27. <div>
  28. Blah blah
  29.  
  30. </div>
  31.  
  32. <div>
  33. Blah blah
  34.  
  35. </div>
  36.  
  37. ^ → line beginning
  38. . → any single character
  39. * → repeat previous pattern
  40. .* → any characters as long as possible (greedy)
  41. .*? → any characters as short as possible (non greedy)
  42. $ → line end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement