View Single Post
Old 06-06-2012, 04:13 PM  
Confined
Registered User
 
Industry Role:
Join Date: Jan 2006
Posts: 93
PHP Code:
$preg '@';
          
$preg .= '[\"]*([a-zA-Z0-9 \!\&\.\/\'\"\#\&\;\_\-\:]+)'//title
          
$preg .= '[\s\r\n\f\"]*';
          
$preg .= '\|([A-Za-z0-9 \?\/#\;\,\.\:\&\!\'\"]*)'//descr 
          
          
$preg .= '\|([a-zA-Z0-9 \?\,\&\.\/\_\-\:=]+)'//siteurl 
          
$preg .= '\|([A-Za-z0-9 \/\,\.\:\&\;\!\'\"]*)'//tags
          
$preg .= '[\s\t\r\n\f]+'//end
          
$preg .= '@i'
let me know how that goes. i'm assuming you already have the preg_match_all statement somewhere, or you need a full on solution to parsing it?
Confined is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote