Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 9th, 2012  |  syntax: None  |  size: 0.39 KB  |  hits: 21  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. preg_match a hyperlink
  2. http://video.cnbc.com/gallery/?video=3000024508
  3.        
  4. preg_match( '/^http://video.cnbc.com/gallery/?video=([0-9_-]/', $content )
  5.        
  6. preg_match('#^http://video.cnbc.com/gallery/?video=([0-9_-]+)$#', $content);
  7.        
  8. preg_match( '#^http://video.cnbc.com/gallery/?video=([0-9_-]+)#', $content )
  9.        
  10. preg_match( '/^http://video.cnbc.com/gallery/?video=([0-9_-])/', $content)