0
如果我做的正則表達式匹配正則表達式重複星號的模式匹配
preg_match('/^[*]{2}((?:[^*]|[*][^*]*[*])+?)[*]{2}(?![*]{2})/s', "**A** **B**", $matches);
我得到的結果爲$matches
我想要的
Array ([0] => **A** [1] => A)
,但我不知道如何修改正則表達式來產生$matches
與輸入文字中間沒有空格的結果相同,即"**A****B**"
。
例子將有助於 – nogad