Привет, как мне сделать preg матч на
$string1 = "[%refund%]processed_by"
$string2 = "[%refund%]date_sent"
Я хочу захватить биты внутри %%, а затем полностью удалить [%item%]
. оставив только "proccessed_by" или "date_sent", у меня был спуск ниже, но я немного застрял.
$unprocessedString = "[%refund%]date_sent"
$match = preg_match('/^\[.+\]/', $unprocessedString);
$string = preg_replace('/^\[.+\]/', $unprocessedString);
echo $match; // this should output refund
echo $string; // this should output date_sent