Tagged Questions
The ereg tag has no wiki summary.
6
votes
1answer
277 views
Converting ereg expressions to preg
Since POSIX regular expressions (ereg) are deprecated since PHP 5.3.0, I'd like to know an easy way to convert the old expressions to PCRE (Perl Compatible Regular Expressions) (preg).
Per example, I ...
6
votes
4answers
123 views
Expected lifespan of ereg, migrating to preg
I work on a large PHP application (>1 million lines, 10 yrs old) which makes extensive use of ereg and ereg_replace - currently 1,768 unique regular expressions in 516 classes.
I'm very aware why ...
2
votes
2answers
39 views
Need some help upgrading a tiny piece of ereg_replace
I have this line of code I use for SEO purposes. The only thing is that it has an ereg_replace function in it. Now I get "ereg_replace() is deprecated" error.
Apparently it's not as simple as ...
2
votes
3answers
105 views
PHP - Convert ereg to preg_match
I know it seems not difficult but my PHP experience is very basic .
foreach ($name as $name)
{
if (preg_match("^\.",$name)) {
echo "bla bla bla";
Die();
}
if (preg_match("\<", $name)) {
echo ...
2
votes
1answer
87 views
ereg() to preg_match() how?
I have kind of simple regexes that i am using.
It's so simple as:
"user/"
"user/[A-z0-9_-]"
These all work fine with ereg, but not preg.
How to convert it?
Thanks
1
vote
1answer
63 views
PHP: from ereg to preg_match
I have the following ereg expressions from an old script to preg_match. But the regex is not my strongest point so I'm not sure where to change what. How do I convert the following POSIX regex to Perl ...
1
vote
1answer
36 views
Error updating ereg call to use preg_match instead
I'm trying to convert the following ereg() call to use preg_match() instead:
if (ereg('(.*/)(.*)$',$fileref,$reg) ) {
This is the preg_match() call I'm attempting to replace it with:
if ...
1
vote
5answers
325 views
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:
@ ∆ SP 0 ¡ P ¿ p
£ _ ! 1 A Q a q
$ Φ " 2 B R b r
¥ Γ # 3 C ...
1
vote
1answer
148 views
PHP: How to strip tags in a string with certain attributes that have certain values?
I need a function like this:
function strip_tags_with_attribute_values($string, $allowedTags, $allowedAttribute, $allowedValue) {
...
}
And it must produce results like this:
$str = '<p ...
1
vote
7answers
64 views
PHP changing part of a string
I have a php system that uploads images and suffixes their files names with -med -slider etc dependant on what size the image is. However only one of the image filenames get saved to the database, so ...
1
vote
3answers
137 views
ereg function in php
When I write this code :
$pat='^[A-Za-z][a-zA-Z0-9_\-\.]*@[a-zA-z0-9\-]+\.[a-zA-Z0-9\-\.]+$';
$mail='javad.y1';
ereg($pat,$mail);
I'm getting this error :
Deprecated: Function ereg() is ...
1
vote
1answer
71 views
Help with regex html plus with extra string at the end
I am trying to find HTML tags, via PHP ereg, that has a {xxx} right before the closing tag - where xxx can be [A-Za-z0-9_\-]*.
For example: <p>xxxx</p><p>yyyy{asdf}</p>
This ...
0
votes
3answers
52 views
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)
and as ereg is deprecated, I have replaced ...
0
votes
2answers
110 views
Troubleshooting “Delimiter must not be alphanumeric or backslash” error when changing ereg() to preg_match() [closed]
Possible Duplicate:
Converting ereg expressions to preg
<?php
$searchtag = "google";
$link = "http://images.google.com/images?hl=de&q=$searchtag&btnG=Bilder-Suche&gbv=1";
...
0
votes
2answers
56 views
Regular expression for php 5.1.6
Can someone help me with a regular expression to include
A-z a-z 0-9 - _ (space) (dot) < > ( ) ~
and exclude other special symbols in ereg function of php 5.1.6?
I am getting too much ...
0
votes
1answer
32 views
Migration from ereg to preg_match: copying a file until a pattern repeated itself X times
I was maintaining some code using ereg, and made the migration to preg_match (not forgetting the delimiter), but it broke my function.
Here is my original function, which take a file, and create a ...
0
votes
2answers
80 views
EREG expression for one or more first names separated by comma
I somehow can't get this to work. I want at least one name but also the possibility to add more names separated by a comma and space.
This is what i got:
var exp_name2 = ...
0
votes
1answer
131 views
punctuation ereg_replace preg_replace
I have this snippet of code from an old OsCommerce install
$pattern = $this->attributes['SEO_REMOVE_ALL_SPEC_CHARS'] == 'true'
? "([^[:alnum:]])+"
: ...
0
votes
2answers
61 views
ereg to preg problems
I'm using a downloaded PHP script to speed up development of my site, but I'm having a stack of 'deprecated' messages coming up relating to ereg. I'm going to turn off warnings before going live, but ...
0
votes
3answers
40 views
PHP ereg problem
I upgraded to PHP 5.3 and i got the error: ereg has been deprecated.
What can i use to replace this??
function CheckIfAlphaNumberic($text) {
if (ereg('[^A-Za-z0-9]', $text)) {
unset ...
0
votes
0answers
73 views
Need to port some regex from ereg() to preg_match() [closed]
Possible Duplicate:
Converting ereg expressions to preg
I have some regex that I need to get working with preg_match(), I don't know a bunch about regex, so I'm hoping someone can help out ...
0
votes
3answers
84 views
How to convert this deprecated ereg() using pointer to preg_match()
Using php 5.3 - ereg() deprecated...
I'm trying to convert this function (to preg_match), but I don't understand the "pointer"...
function gethostbyaddr_new($ip)
{
$output = `host -W 1 $ip`;
...
0
votes
3answers
90 views
How do I allow for user input of words sparated by commas and spaces? PHP
what I am trying to do is allow for users to input keywords sparated by a comma and a space (ex: word, word, word, word). There is no limit on the number of words or anything, I would simply like the ...
0
votes
1answer
116 views
Validating date in PHP [closed]
Possible Duplicate:
how to validate date with PHP
Hi there,
I have a script which checks the date passed to it in this format YYYY-MM-DD and validates it, however it seems to be ...
0
votes
3answers
602 views
how to solve the ereg function deprecated error
Hi currently iam working with SEO php scripts im just following google seo scripts when i use the search terms i just got an error like this
Deprecated: Function eregi() is deprecated in ...
-1
votes
2answers
169 views
Link or image preg/ereg replace?
Heres my issue. I'm building a website where you can share links/pictures. Now heres what I want to do. If the link is a link to a site, then display a link such as:
<a href="http://example.com" ...
-1
votes
1answer
50 views
ereg is deprecated conversion [closed]
Possible Duplicate:
Converting ereg expressions to preg
I need to convert the ereg usage here to something more current (since ereg is deprecated).
Here's the function my code currently ...
-4
votes
1answer
40 views
Changing ereg to preg
I got an error on phpweather script "ereg deprecated".
If anyone can replace this expression from ereg to preg, I would be very grateful.
ereg("^pw_${type}_([a-z][a-z])(_[A-Z][A-Z])?\.php$", $file, ...