The ereg-replace tag has no wiki summary.
2
votes
2answers
41 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
4answers
366 views
ereg_replace to preg_replace for a particular regex
I've converted some eregs to preg_matches by replacing the initial ^ and final $ with /s (I hope that was sufficient), but I have an ereg_replace in the same function that I'm not sure about.
It's ...
2
votes
3answers
1k views
replace ereg_replace with preg_replace
Hi need to change the function ereg_replace("[\]", "", $theData) to preg_replace
1
vote
2answers
602 views
replacement for ereg_replace
I have upgraded php and now im getting the ereg_replace deprecated errors.
I have done some searching round web and found that I can use preg instead but not sure how to change this code correctly
...
1
vote
3answers
243 views
Using ereg_replace or preg_replace to leave part of a filename in php
I am trying to leave only the prefix (WST in the example below) and the number. Any suffix and file extension should be removed. This should leave me with the product code in tact.
Here are three ...
0
votes
1answer
37 views
ereg_replace to preg_replace conversion
How can i convert:
ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]", " ", $data);
to
preg_replace("......", " ", $data);
thanks in advance!
0
votes
3answers
58 views
Escaping quote, both " and '
I am trying my best to work this out and it is driving me crazy, I am hoping that I can use either preg_replace or ereg_replace for this.
Basically I am putting out string of text which is taken from ...
0
votes
2answers
62 views
eregi_replace() to preg_replace() help
I've tried this a number of different ways and I've even downloaded the Regular Expression reference sheet from addedbytes.com, but I just can't figure out how to move this eregi_replace() statement ...
0
votes
3answers
602 views
Replace all characters except letters, numbers, spaces and underscores
I am really not good with regular expressions, and the examples I have found do not seam to be working.
I am looking to replace all characters in a string except letters, numbers, spaces and ...
0
votes
1answer
60 views
change ereg_replace into preg_replace
It seems to be simple, but I have problem.
ereg_replace("\n","\\n",$row)
into preg_replace.
Anyone could give me a hand?
0
votes
2answers
184 views
ereg_replace, preg_replace and PHP 5.3.0 [closed]
Possible Duplicates:
Changing ereg_replace to equivalent preg_replace
Converting ereg expressions to preg
Can anyone show me the equivalent of :
ereg_replace("\n#[^\n]*\n", "\n", $sql)
...
0
votes
1answer
71 views
Change ereg_replace to preg_replace
How would I change
$output = ereg_replace("<script.*</script>", "", $output);
to preg?
I tried $output = preg_replace("/<script.*</script>/", "", $output);
Thanks
EDIT: ...
0
votes
4answers
223 views
Replace ereg_match with preg_match
Dear Sir/m'am
How can i replace ther deprecated ereg_replace with preg_replace or str_replace
and still have the same functionality as in the code below?
return ...
0
votes
2answers
770 views
PHP ereg_replace deprecated
I have a script that throws me errors because I run PHP 5.3.1
What Do I have to use in the example?
$row[$j] = ereg_replace("\n", "\\n", $row[$j]);
Deprecated: Function ereg_replace() is deprecated ...
-1
votes
4answers
42 views
PHP preg_replace -####/
I'm back again to show my ignorance once more.
I need assistance grabbing numbers that are in a URL in a specific spot. The rest of the URL may also contain numbers so I need to restrict it to ...
-3
votes
2answers
67 views
ereg_replace to preg_replace
I have this warning, Deprecated: Function ereg_replace() is deprecated
someone please help me.
ereg_replace:
ereg_replace('([^(folder)])/images/flash', '"/folder/images/flash', $echotemp);
to ...