我有一個mysql場這樣的數據:PHP的preg_match直至雙線突破
First text text text text
text text text text
text text text text text text
text text text text text text
Second text text text text
text text text text
text text text text text text
text text text text text text
我試圖從浸漬料的第一個字匹配,直至雙線突破。我已經試過:
preg_match('/First(.*)\n\n/', $mysqlrow, $m);
這不返回行。我也嘗試了m
和s
修飾符,它們不返回正確的字符串。我也試過\r\n
,它不返回任何東西。
你怎麼做這個
_Including_第一個單詞?直到_包括_雙重換行符?它會永遠只是_word_還是會有數字或其他字符? – Sepster
你試過'preg_split(「/ \ r?\ n /」,$ mysqlrow)'? –