Top "Ereg" questions

Old regular expression function in PHP that is now DEPRECATED in favour of preg_match()

Function ereg_replace() is deprecated - How to clear this bug?

I have written following PHP code: $input="menu=1&type=0&"; print $input."<hr>".ereg_replace('/&/…

php deprecated ereg
How can I convert ereg expressions to preg in PHP?

Since POSIX regular expressions (ereg) are deprecated since PHP 5.3.0, I'd like to know an easy way to convert the old …

php preg-replace preg-match pcre ereg
Deprecated: Function ereg() is deprecated

Possible Duplicate: How can I convert ereg expressions to preg in PHP? My contact form is othervise working but I …

php forms deprecated eregi ereg
Troubleshooting "Delimiter must not be alphanumeric or backslash" error when changing ereg() to preg_match()

Possible Duplicate: Converting ereg expressions to preg <?php $searchtag = "google"; $link = "http://images.google.com/images?hl=de&…

php regex preg-match ereg
PHP - preg_match and "Unknown modifier" error

I had that test that worked fine : if (ereg("([0-9]{2})[-./]([0-9]{2})[-./]([0-9]{4})[ ]([0-9]{2}):([0-9]{2}):([0-9]{2})", $dateToTest, $tab) == false) …

php regex preg-match ereg
How to check if string contains only specified character set?

I'm working on string and I wonder which way is best to check if string contains only specified character set: @ ∆ …

php string preg-match ereg