Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. s.pageName = "Garden: Sheds & Storage: Wooden Sheds";
  2.  
  3. if (preg_match("/s.pageName = "(.*?)"/", $html, $matches)) {
  4.  
  5. var_dump($matches);
  6.  
  7.  
  8. }
  9.  
  10. $text = <<<EOT
  11. s.pageName = "Garden: Sheds & Storage: Wooden Sheds";
  12. EOT;
  13.  
  14. if (preg_match('/s.pageNames+=s+"(.*?)";/', $text, $matches)) {
  15. var_dump($matches);
  16. }
  17.  
  18. (?<=pageNames=s").+(?=";)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement