Can someone tell me the best/fastest way to extract data from a given position.
I have a string...
$string = "My Name (PumpkinHead)";
I need to pull out...
$extract = "(PumpkinHead)";
So really, I need to scan for the first ( then subtract one character position and extract everything after.
Hope that makes sense! Thanks in advance.