<?php $string = 'adg'; preg_match('/([abc])([def])/', $string, $r); print_r($r); preg_match('/([abc])([def])/', $string, $r, PREG_OFFSET_CAPTURE); print_r($r); ?>
You have javascript disabled. You will not be able to edit any code.