I need to remove a number only from a specific string. In particular:
$item = preg_replace('/\d+/u', '', $item);
but in this way it replaces all numbers from all strings. I instead need to remove only number after string 'team'.
How can I do this?
team2567 = team;
season1617 = season1617;
Thanks a lot!