1
vote
3answers
88 views
Can I use regex for this?
Hi.
Is this possible with regex?
I have a file, and if a '@' is found in the file, the text after the '@' with the '@' is to be replaced with the file with the same name as after …
0
votes
2answers
37 views
preg match email and name from to
i want to find name and email from following formats (also if you know any other format that been getting use in mail application for sending emails, please tell in comment :))
ho …
0
votes
4answers
110 views
PHP file writing optimization
EDIT: Optimization results at end of this question!
hi, i have a following code to first scan files in a specific folder and then read every file line by line and after numerous " …
2
votes
4answers
867 views
regex (in PHP) to match & that aren’t HTML entities
Here's the goal: to replace all standalone ampersands with & but NOT replace those that are already part of an HTML entity such as .
I think I need a regular exp …
4
votes
3answers
84 views
regex matches repeating group {0,2} or {0,4} but {0,3} doesn’t.
first, this is using preg.
String I'm trying to match:
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa b c d xp
My regex and their matches:
(\S*\s*){0,1}\S*p = "d xp"
(\S*\s*){0,2}\S*p = …
0
votes
2answers
60 views
Replace “abc123def” with “abc 123 def” in multibyte string
Normally I would just do this.
$str = preg_replace('#(\d+)#', ' $1 ', $str);
If I knew it was going to be utf-8 I would add a lowercase "u" modifier to the pattern and I think I …
0
votes
2answers
142 views
PHP - Replacing ereg with preg
Hi,
I'm trying to remove some deprecated code from a site.
Can anyone tell me the preg equivalent of
ereg_replace("<b>","<strong>",$content);
Thanks.
1
vote
1answer
36 views
preg_replace easy for a pro
i want to find first select ... from and replace that only, following code replace all select..from in sql query, i just need for first select..from
preg_replace('#select(.*?)from …
0
votes
3answers
159 views
Is there a token for capture line breaks in multiline regex?
I've run into this problems several times before when trying to do some html scraping with php and the preg* functions.
Most of the time I've to capture structures like that:
< …
0
votes
2answers
59 views
Using preg_split to go from ‘hi how are you’ to [hi, how are you]
I want to split a string into two parts, the string is almost free text,
for example:
$string = 'hi how are you';
and i want the split to look like this:
array(
[0] => h …
2
votes
1answer
758 views
Regular expression that matches between quotes, containing escaped quotes
This was originally a question I wanted to ask, but while researching the details for the question I found the solution and thought it may be of interest to others.
In Apache, the …
1
vote
2answers
275 views
PHP validate youtube script
I have a site that allows users to copy and paste the embeded video script that youtube provides and upload it to a database. I want to be able to check that this script is valid y …
0
votes
2answers
179 views
Extracting functions arguments using RegExp (PREG)
Consider the following function arguments (they are already extracted of the function):
Monkey,"Blue Monkey", "Red, blue and \"Green'", 'Red, blue and "Green\''
Is there a way …
0
votes
5answers
239 views
preg_match works in regexbuddy, not in php
Ok so I have this regex that I created and it works fine in RegexBuddy but not when I load it into php. Below is an example of it.
Using RegexBuddy I can get it to works with this …
4
votes
2answers
957 views
preg_match_all() [function.preg-match-all]: Unknown modifier ‘]’
Using a few different patterns but they each come up with this error - so what's wrong?
My shortest one to diagnose is:
$pattern = "<img([^>]*[^/])>";
preg_match_all($pa …
