suppose I have this string:
some striinnngggg <a href="something/some_number">linkk</a> soooo <a href="someotherthing/not_number">asdfsadf</a>
I want to strip tags from this string that contains the tag format <a href="something/some_number"></a>
without stripping the content of that tag where some_number can be any number
Hence in the example above, the desired end results is
some striinnngggg linkk soooo <a href="someotherthing/not_number">asdfsadf</a>
notice that the second tag did not get stripped since the second part of the link is not a number
how would I accomplish this using regex/php's preg functions