Top "Posix-ere" questions

The POSIX Extended Regular Expression is the regex flavor used by the UNIX/Linux egrep command.

Deprecated: Function split() is deprecated. How to rewrite this statement?

I have the following statement which worked fine before PHP 5.3 using the split function: list($year, $month, $day, $hour, $min, $…

regex php posix-ere
What is the difference between split() and explode()?

The PHP manual for split() says This function has been DEPRECATED as of PHP 5.3.0. Relying on this feature is highly …

php posix-ere
ereg/eregi replacement for PHP 5.3

I'm sorry to ask a question but I am useless when it comes to understanding regex code. In a php …

php eregi posix-ere
How to change PHP's eregi to preg_match

Possible Duplicate: How can I convert ereg expressions to preg in PHP? I need help, below is a small VERY …

php email pcre posix-ere
How to replace ereg?

I'm getting the following message for some php I have to use but did not write: Deprecated: Function ereg() is …

php regex pcre posix-ere
ereg_replace to preg_replace?

How can I convert ereg_replace(".*\.(.*)$","\\1",$imgfile); to preg_replace... ? ? I'm having trouble with it?

php regex pcre posix-ere
PHP ereg vs. preg

I have noticed in the PHP regex library there is a choice between ereg and preg. What is the difference? …

php regex pcre posix-ere
ereg_replace for PHP 5.3 +?

I've seen a solution for not having to rework usage of the ereg function for PHP 5.3: Good alternative to eregi() …

php php-5.3 posix-ere
POSIX Regular Expressions: Excluding a word in an expression?

I am trying to create a regular expression using POSIX (Extended) Regular Expressions that I can use in my C …

regex regex-negation negative-lookahead posix-ere