<?php $text = <<<TEXT # one # two a-two b-two c-two # three a-three b-three # four TEXT; echo preg_replace_callback( "~^#~m", function () { static $counter = 0; return ++$counter; }, $text );
You have javascript disabled. You will not be able to edit any code.