1
vote
2answers
509 views
how to replace last occurence of a word in javascript?
for example:
var str="<br>hi<br>hi";
to replace the last(second) <br>,
to change into "<br>hihi"
…
-6
votes
2answers
352 views
how to fix this regular expression non-greedy problem?
preg_match('/(.*?)see below[^,\.<]*/s',$xml,$match);
echo $match[0];
the ouput is,which I think the non-greedy matching is not working:
<?xml version …
-1
votes
3answers
216 views
php non-greedy regex problem
demo:
$str = 'bcs >Hello >If see below!';
$repstr = preg_replace('/>[A-Z0-9].*?see below[^,\.<]*/','',$str);
echo $repstr;
What I want this tiny progra …
0
votes
2answers
58 views
how to know whether preg_replace() didn’t match or matched from start?
both conditions returns false,how to distinguish them?
can it be done without using the third parameter?
…
0
votes
5answers
277 views
-1
votes
2answers
42 views
Why this PHP snippet failed to match anything?
var_dump(preg_match_all('/(job_show\.asp\?id=[0-9]*)">/s',':</font><a href="job_show.asp?id=42"',$match));
$hrefs = $match[1];
var_dump($hrefs);
Output is: …
0
votes
2answers
134 views
How to enable whitespace insensitive mode of regular expression in PHP?
I've tried "m" modifier,but not working:
$reg = '/...
/m';
preg_match($reg,...,$match);
EDIT
Or maybe I need a modifier that can …
1
vote
4answers
358 views
How to split a string by multiple delimiters in PHP?
"something here ; and there, oh,that's all!"
I want to split it by ; and ,
so after processing should get:
something here
and there
oh
that's all! …
