I\'m writing PHP code to parse a string. It needs to be as fast as possible, so are regular expressions the way to go? I have a hunch that PHP string functions are more expe
Native string functions are way faster. The benefit of regexp is that you can do pretty much anything with them.