.. title: Any regex wizard reading this? .. slug: P468 .. date: 2007/02/12 23:31 .. tags: programming, python .. category: .. link: .. description: .. type: text .. author: .. en: .. priority: .. updated: 2007/02/12 23:31 .. url_type: If so, what is the C POSIX regex (you know regcomp & friends) equivalent of this python regular expresion:: re.compile(r'^([a-z][a-z0-9_\-\.]*)=', re.IGNORECASE) Because it sure isn't this:: regcomp(&re,"^([a-z][a-z0-9_\-\.]*)=",REG_ICASE) I have been playing with it for two hours and am bored :-)