Regular Expression: Match word and save anything else until space
I am trying to regex for words matching @food__ or #food__ in a string, so that I always match @food or #food and any other letters succeeding until a space. This i开发者_Python百科s giving me errors:
preg_match_all('/\#/food/i', $unparsed, $parsed);
Also, how can I add conditions like matching: Food, FOOD & food ?
preg_match_all('/[#@]food\S*/i', $unparsed, $parsed);
精彩评论