Guest User

Untitled

a guest
Mar 17th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. This is some text, and here's some in "double quotes"
  2. "and here's a double quote:" and some more", "text that follows"
  3.  
  4. "double quotes"
  5. "and here's a double quote:" and some more"
  6. "text that follows"
  7.  
  8. "(?:\"|.)*?"
  9.  
  10. >>> preg_match_all('%"(?:\"|.)*?"%', $msg, $matches)
  11. >>> $matches
  12. [
  13. [ "double quotes",
  14. "and here's a double quote:",
  15. ", "
  16. ]
  17. ]
Add Comment
Please, Sign In to add comment