<?php preg_match('~a(?=\Kb)~', 'abc', $matches); print_r($matches); preg_match('~a(?=b\K)~', 'abc', $matches); print_r($matches);
You have javascript disabled. You will not be able to edit any code.