Testing CML Touch
ready for pickup at Karl Road by 06May2010
EOD; $pattern = '/(pickup at) (.*)\b/'; preg_match( $pattern, $table, $matches ); var_dump( $matches ); $pattern = '/(by) (.*)\b/'; preg_match( $pattern, $table, $matches ); var_dump( $matches ); $pattern = '/.*pickup at (.*?)\\n.*?by ([^ ]+).*/ms'; preg_match( $pattern, $table, $matches ); var_dump( $matches ); ?>