鑑於以下文字:簡單的PHP正則表達式替換
1. Place pastry on microwave safe plate.2. Heat on high for 3 seconds.3. Cool briefly before handling.
我想更換一個點後面加一個點的一些(任何數量的)的所有地方。
例如,
.2. or .15.
與
.<BR>number.
替換爲的preg_replace模式,我目前使用的:
$pattern = "/^(\.[0-9]\.)/";
$replacement = "";
$text= preg_replace($pattern, $replacement, $text);
如何,使用了preg_replace,替換文本,以便它把一個
之間的第一個點和數字?
刪除''^和再試一次'「/\.[0-9]+ \ ./「' –