0
votes
3answers
26 views
How do I look for “ and ” in php using preg_match?
I've been using "/x{201C}/u" and "/x{201D}/u" to match them, but there's no result.
Am I doing something wrong??
1
vote
4answers
75 views
using regex to get extract username from email address
My string of text looks like this
johndoe@domain.com (John Doe)
I need to get just the part before the @ and nothing else. The text is coming from a simple xml object if that ma …
1
vote
4answers
53 views
PHP Regular Expression [accept selected characters only]
I want to accept a list of character as input from the user and reject the rest. I can accept a formatted string or find if a character/string is missing.
But how I can accept only …
1
vote
3answers
37 views
preg_match returning wierd results
I am searching a string for urls...and my preg_match is giving me an incorrect amount of matches for my demo string.
String:
Hey there, come check out my site at www.example.c …
0
votes
1answer
39 views
PHP Multiple digits regular expression
I need to extract the digits from the following string using regular expression:
pc 32444 xbox 43567
so my array will be
array ([0] => 32444 [1] => 43567)
Can someone help cons …
0
votes
5answers
54 views
Are the PHP preg_functions multibyte safe?
There are no multibyte 'preg' functions available in PHP, so does that mean the default preg_functions are all mb safe? Couldn't find any mention in the php documentation.
0
votes
1answer
44 views
Php preg_match help
I am trying to find a php preg_match that can match
test1 test2[...] but not test1 test2 [...]
and return test2(...) as the output as $match.
I tried
preg_match('/^[a-zA-Z0-9] …
0
votes
3answers
51 views
Checking a string against a pattern
I want to check posted content against a pattern. I am having trouble setting up this preg_match (or array?). The pattern being...
TEXTHERE:TEXTHERE
TEST:TEST
FILE:FILE
AND
TE …
0
votes
3answers
42 views
PHP,preg_match,Regular Expression. What am I doing wrong?
Here is the pattern that I want to match:
<div class="class">
<a href="http://www.example.com/something"> I want to be able to capture this text</a>
<span cla …
0
votes
6answers
58 views
Regular Expression Question
I have a regular expression in PHP that looks for the date in the format of YYYY-MM-DD
What I have is: [\d]{4}-[\d]{2}-[\d]{2}
I'm using preg_match to test the date, the problem …
-2
votes
1answer
41 views
PHP removing text from preg_match result
Hello I am using preg_match to parse for data, it works 99% of the time but sometimes it gives me a result like:
$match[1] = <a href="example">text i want</a>
when w …
1
vote
3answers
60 views
Matching multiple occurrence of the same character with preg_match
how can i find multiple occurrence of the same character?
something like:
$maxRepeat = 3;
"pool" passes
"poool" don't
i need this to work for any character, so i guess I'll ha …
0
votes
5answers
84 views
How to explode date from a string using php preg_match and regex
I am processing strings with a date somewhere in it. There are different ways the date can appear in this string:
"… 01.11.2009 18:00-21:00 …" or
"… 01.11.2009 18:00-02.11.2009 …
0
votes
3answers
125 views
php preg_match two examples
Hello, I need to preg_match for
src="http:// "
where the blank space following // is the rest of the url ending with the ". My adapted doesn't seem to work:
preg_match('# …
0
votes
1answer
169 views
Preg match text in php between html tags
Hello I would like to use preg_match in PHP to parse the "Desired text" out of the following from a html document
<p class="review"> Desired text </p>
Ordinarily I w …
