1
的內容我有一個字符串得到匹配元素
$str = "this is [start] my string [end] at this moment";
我需要得到內[start]
和[end]
內容。
當我使用
$result = preg_match('/\[start\].+\[end\]/',$str, $m);
它mutches [start] my string [end]
,但我需要得到的只有my string
(無空格)。
當然我可以做另一個preg_replace並刪除它們,但我認爲必須有更優雅的解決方案。
謝謝
優秀。那麼空間呢? – Simon 2010-08-21 12:07:29
@Syom:查看更新。 – kennytm 2010-08-21 12:12:01