so I did
$subject = 'sakdlfjsalfdjslfad <a href="something/8230">lol is that true?</a> lalalala';
$subject = preg_replace('<a href="something\/([0-9]+)">(.+?)<\/a>', '$1', $subject);
echo $subject;
whereby the objective is to have $subject return
'sakdlfjsalfdjslfad lol is that true? lalalala'
but then PHP returned
warning: preg_replace(): Unknown modifier '('
what did I do wrong?