Tagged Questions
regex match function in PHP
10
votes
4answers
93 views
preg_match php street address
I need to match using regular expression in php addresses like:
144 street, city, state zip/postal code
144 street, apt #1, city, state zip/postal code
144 street apt #1, city state zip/postal code
...
10
votes
4answers
7k views
Validate username as alphanumeric with underscores
On my registration page I need to validate the usernames as alphanumeric only, but also with optional underscores. I've come up with this:
function validate_alphanumeric_underscore($str)
{
...
8
votes
4answers
162 views
Are ^$ and $^ in PHP regex the same?
Why do both of these regexes match successfully?
if(preg_match_all('/$^/m',"",$array))
echo "Match";
if(preg_match_all('/$^\n$/m',"\n",$array))
echo "Match";
8
votes
4answers
197 views
Regular expression preg_quote symbols are not detected
I have a dictionary of swear words in the database, and the following works great
preg_match_all("/\b".$f."(?:ing|er|es|s)?\b/si",$t,$m,PREG_SET_ORDER);
$t is the input text and simply, $f = ...
6
votes
1answer
285 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
2answers
1k views
Need regex to parse keyword='value' with single or double quotes
I'm having trouble writing a regular expression (suitable for PHP's preg_match()) that will parse keyword='value' pairs regardless of whether the <value> string is enclosed in single or double ...
5
votes
5answers
81 views
how to remove chars into a string?
I have a lot of strings, and I need to delete '0' at start of string, but what is the better way to do it, because this is an example of strings:
0130799.jpg //I need to get 130799
0025460.jpg //I ...
5
votes
1answer
364 views
Using preg_match to find all words in a list
With help from SO, I was able to pull a 'keyword' out of an email subject line to use as a category. Now I've decided to allow multiple categories per image, but can't seem to word my question ...
5
votes
1answer
4k views
Warning: preg_match() [function.preg-match]: Unknown modifier '/' — I would like help to fix this problem
I'm trying to use preg_match to return all the URL's that are inclosed in " " in a page source code.
The code I am using is
preg_match('"http://(.+?)\"', $code, $matches);
And I am getting the ...
5
votes
5answers
331 views
Regular Expression to match unlimited number of options
I want to be able to parse file paths like this one:
/var/www/index.(htm|html|php|shtml)
into an ordered array:
array("htm", "html", "php", "shtml")
and then produce a list of alternatives:
...
5
votes
3answers
9k 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 would use ...
5
votes
3answers
5k views
Regex for finding valid filename
I want to check whether a string is a file name (name DOT ext) or not.
Name of file cannot contain / ? * : ; { } \
Could you please suggest me the regex expression to use in preg_match()?
4
votes
5answers
92 views
Help with regex to match any url but that of admin folder
I am stuck with something I know must be simple but been going round in circles for a while now.
I want to create a regular expression for use with a cms routing feature using php and preg_match that ...
4
votes
5answers
159 views
Regular expression starting with http and ending with pdf?
I have loaded the entire HTML of a page and want to retrieve all the URL's which start with http and end with pdf. I wrote the following which didn't work:
$html = file_get_contents( ...
4
votes
2answers
230 views
Regex match url without file extension
I would like some help matching the following urls.
/settings => /settings.php
/657_46hallo => /657_46hallo.php
/users/create => /users.php/create
/contact/create/user => ...
4
votes
3answers
78 views
Changing/Editing tags with PHP
This is my first question here so please bear with me - I apologise if I have not posted correctly.
I have managed to pull a job description from an XML file created by our database however, the ...
4
votes
5answers
898 views
How to add rel=“nofollow” to links with preg_replace()
The function below is designed to apply rel="nofollow" attributes to all external links and no internal links unless the path matches a predefined root URL defined as $my_folder below.
So given the ...
4
votes
6answers
153 views
Match upto x regex or y regex
I currently have this:
^(.+)\(\w+\)|^(.+)\s\(\d{3}\:\d{3}\s\-\s\d{3}\:\d{3}\)
The #1 it only matches Foo's
#2 Foo has which is correct
#3 does match foo but it's in the 3rd array item [2]:
3rd ...
4
votes
1answer
240 views
wordpress: problem with adding another rule with wp_rewrite
i set my wordpress permlink to /%category%/%postname% now i'm using Nextgen Gallery so when i have a gallery in a page it will be something like /cat/page?gallery=10 i want to make it something like ...
4
votes
1answer
1k views
PHP's `preg_match_all` functionality in Java
In PHP if we need to match a something like, ["one","two","three"], we could use the following regular expression with preg_match.
$pattern = "/\[\"(\w+)\",\"(\w+)\",\"(\w+)\"\]/"
By using the ...
4
votes
3answers
133 views
Matching a few letters and letters with numbers
I'm trying to match letters C D F H I E1 E2 CR (case insensitive) and came up with this. It'll match a single letter but wont match the E1 E2 CR. Actually it should. Whats the right way to do this?
...
4
votes
4answers
371 views
How do I catch an invalid preg_match pattern?
I am writing a PHP script that accepts a regular expression pattern from the user which is used by preg_match(). How can I check that the pattern is valid?
4
votes
4answers
3k views
PHP email validation
For PHP what is the best email validation using preg, NOT ereg because it's deprecated/removed.
I don't need to check if the website exists (it's not like maximum security).
I've found many ways ...
4
votes
4answers
294 views
php security question
It has a been a long day but I cannot seem to choose in my own head which is better or if I should use both.
Basically what should I use to sanitize user inputted values. Is it either the ...
4
votes
4answers
2k views
Any preg_match to check if a url is a youtube/vimeo/dailymotion video link?
What's the best preg_match syntax to check if a url is a video link of youtube/vimeo/ or dailymotion?
maybe if it's hard, then just to check the domain name.
Thanks
4
votes
3answers
3k views
Regex Optional Groups?
I seem to have confused myself with a preg_match regex I'm doing, so fresh eyes and help would be appreciated.
My current regex is as follows:
...
3
votes
1answer
29 views
PCRE: Capturing optional pattern using PHP
I have a string from which I need to capture one and possibly two substrings (using PHP):
The first one is mandatory
The second one is optional
The first and second ones are separated by unknown ...
3
votes
2answers
62 views
preg_match Delimiter error
Good day,
I have read about 25 different articles talking about adding a "/" or a "~" etc.., for a delimiter but to no avail with this line of code. Everything I have tried it still gives me a ...
3
votes
6answers
81 views
How find every thing but not one word
In text i want to find structures like every thing till some text, but not match between some word.
Example in text:
Templates : You can add custom templates for your theme. Updated on 2010 ...
3
votes
3answers
64 views
Regex email - how to allow plus symbols in email?
I always find regular expressions a headache, and googling didn't really help. I'm currently using the following expression (preg_match): ...
3
votes
4answers
66 views
Regular Expression (preg_match)
This is the not working code:
<?php
$matchWith = " http://videosite.com/ID123 ";
preg_match_all('/\S\/videosite\.com\/(\w+)\S/i', $matchWith, $matches);
foreach($matches[1] as $value)
{
...
3
votes
2answers
102 views
Logical operator AND with php regular expression
I'd like to use a kind of logical operator "AND" in my regular expression.
I tried this:
(?=exp1)(?=exp2)
But in PHP ?= doesn't work and need to write my program in PHP language. Is there another ...
3
votes
3answers
38 views
php regular expression not returning matches
i have a really simple regular expression setup.
preg_match('/[0-9]*/', $item, $id);
$item's string value is "<li class="page_item page-item-29 current_page_item"><a ...
3
votes
4answers
72 views
Regex pattern using w.* not matching text starting with foreign characters such as Ä
I have the following regex that I have been using successfully:
preg_match_all('/(\d+)\n(\w.*)\n(\d{3}\.\d{3}\.\d{2})\n(\d.*)\n(\d.*)/', $text, $matches)
However I have just found that if the text ...
3
votes
2answers
63 views
Tweak for using Preg_Match() on Phone numbers
I am using preg_match to extract the various sections of a US-based phone number from within a paragraph of text. I can already extract the number. But I want to make match[0] include only the phone ...
3
votes
1answer
64 views
Regular expression to detect line that starts with an asterisk
The code below fails to detect a single instance of the occurance. =O Whats wrong? =\
How do I detect the following lines (which begin with a newline) that begin with an astrick? I'm at a loss. This ...
3
votes
5answers
140 views
What regex expression will check GPS values?
I'm letting users enter GPS values through a form, they all have the same form, some examples:
49.082243,19.302628
48.234142,19.200423
49.002524,19.312578
I want to check the entered value ...
3
votes
1answer
87 views
PCRE: ^|$ and \A|\Z?
In PCRE, what's the difference between:
^ and \A, and
$ and \Z?
I remember reading there was a subtle difference, but can't recall exactly what it was.
3
votes
4answers
121 views
Get repeated matches with preg_match_all()
I'm trying to get all substrings matched with a multiplier:
$list = '1,2,3,4';
preg_match_all('|\d+(,\d+)*|', $list, $matches);
print_r($matches);
This example returns, as expected, the last match ...
3
votes
8answers
156 views
Preg_match expression to find code in string
Example strings:
$string = "Buyer must enter coupon code 10OFF100 in shopping cart.";
$string = "Get $20 Off Auto Parts Order Over $150. Use Coupon code: GAPCJ20";
I need to extract the codes ...
3
votes
1answer
150 views
php regex optionally match a whole word
im using php and i need to scrape some information from some curl responses to a site. i am simulating both an ajax request by a browser and a normal (entire) page request by a browser, however the ...
3
votes
2answers
190 views
Preg_match using array?
Correct usage is: /,,([,]+)?|^,|,$|\b,\b|\s,/
$comma[0] = '/,,([,]+)?/';
$comma[1] = '/^,/';
$comma[2] = '/,$/';
$comma[3] = '/\b,\b/';
...
3
votes
1answer
39 views
preg_match problem
I've upgraded my php to 5.3 so i need to change regex expressions to preg_match. I've successfully made few changes to a script using delimiters and changing regex to preg_match but i'm struck with ...
3
votes
5answers
100 views
Regex not working for password? not sure why
So I have a regex code to make sure the password is from 4 to 13 characters, it keeps failing
public function valid_password($password){
if(preg_match('^.{3,14}^', $password)){
...
3
votes
2answers
359 views
PHP Reverse Preg_match
if(preg_match("/" . $filter . "/i", $node)) {
echo $node;
}
This code filters a variable to decide whether to display it or not. An example entry for $filter would be "office" or "164(.*)976".
...
3
votes
1answer
446 views
preg_match and (non-English) Latin characters?
I have a XHTML form where I ask people to enter their full name. I then match that with preg_match() using this pattern: /^[\p{L}\s]+$/
On my local server running PHP 5.2.13 (PCRE 7.9 2009-04-11) ...
3
votes
4answers
202 views
php preg_match nightmare
I just cant get my head around regex, any help appreciated !
I have plenty of string data which may or may not contain the strings "1/10" or "2/10" or "2/18" etc. Basically, both the numerators and ...
3
votes
4answers
506 views
regular expression to detect consecutive numbers - not working for non-English input
Hi All I have this code that checks for 5 or more consecutive numbers :
if (preg_match("/\d{5}/", $input, $matches) > 0)
return true;
It works fine for input that is English, but it's tripping ...
3
votes
5answers
992 views
Split camelCase word into words with php preg_match (Regular Expression)
How would I go about splitting the word:
oneTwoThreeFour
into an array so that I can get:
one Two Three Four
with preg_match ?
I tired this but it just gives the whole word
$words = ...
3
votes
3answers
90 views
How to tell if PREG named groups were used in the pattern passed to preg_match()?
I'm interested in determining if named groups were used in the pattern passed to preg_match().
Imagine a scenario in which a list of regex patterns are iterated over and passed into preg_match(). ...