Extracting strings based on a particular split delimiter in php
I have a string "[email protected]+test+7".I want to extract [email protected], test and 7 into an array. How to achieve this is PHP? I have tried using preg_match but couldn't crack it.