64
votes
3answers
6k views
How does this giant regex work?
I recently found the code below in one of my directories, in a file called doc.php. The file functions or links to a file manager. It's quite nicely done. Basically, it lists all the files in the ...
64
votes
20answers
16k views
How do you implement a good profanity filter?
Many of us need to deal with user input, search queries, and situations where the input text can potentially contain profanity or undesirable language. Oftentimes this needs to be filtered out.
Where ...
57
votes
0answers
7k views
How to parse HTML with PHP? [closed]
Possible Duplicate:
How to parse and process HTML with PHP?
Suggestion for a reference question. Stack Overflow has dozens of "How to parse HTML" questions coming in every day. However, ...
35
votes
14answers
45k views
PHP validation/regex for URL
I've been looking for a simple regex for URL's, does anybody have one handy that works well? I didn't find one with the zend framework validation classes and have seen several implementations.
...
31
votes
3answers
958 views
Match a^n b^n c^n (e.g. “aaabbbccc”) using regular expressions (PCRE)
It is a well known fact that modern regular expression implementations (most notably PCRE) have little in common with the original notion of regular grammars. For example you can parse the classical ...
30
votes
1answer
7k views
Is there a PHP function that can escape regex patterns before they are applied?
Is there a PHP function that can escape regex patterns before they are applied?
I am looking along the lines of the C# Regex.Escape function.
28
votes
3answers
599 views
Split string by delimiter, but not if it is escaped
How can I split a string by a delimiter, but not if it is escaped? For example, I have a string:
1|2\|2|3\\|4\\\|4
The delimiter is | and an escaped delimiter is \|. Furthermore I want to ignore ...
28
votes
15answers
70k views
How to extract img src, title and alt from html using php?
I would like to create a page where all images which reside on my website are listed with title and alternative representation.
I already wrote me a little program to find and load all html files, ...
25
votes
5answers
3k views
Compile regex in PHP
Is there a way in PHP to compile a regular expression, so that it can then be compared to multiple strings without repeating the compilation process? Other major languages can do this -- Java, C#, ...
21
votes
3answers
926 views
Search and Replace Words in HTML
what I'm trying to do is make a 'jargon buster'.
Basically I have some html and some glossary terms in a database.
When the person clicks on jargon buster it replaces the words in the text with a nice ...
16
votes
4answers
221 views
Recursive PHP Regex
EDIT: I selected ridgerunner's answer as it contained the information needed to solve the problem. But I also felt like adding a fully fleshed-out solution to the specific question in case someone ...
15
votes
2answers
310 views
Parse Apache log in PHP using preg_match
I need to save data in a table (for reporting, stats etc...) so a user can search by time, user agent etc. I have a script that runs every day that reads the Apache Log and then insert it in the ...
15
votes
1answer
419 views
SQL Injection Detection - Have compiled regexes… looking for test injections
Over the weekend I've compiled a list of regexs to check for sql injections in GET, POST and COOKIE super globals. They are by all accounts very effective in detecting if a sql injection is found. ...
15
votes
7answers
493 views
How to protect yourself from XSS when you allow people to post RAW embed codes?
Tumblr and other blogging websites allows people to post embeded codes of videos from youtube and all video networks.
but how they filter only the flash object code and remove any other html or ...
13
votes
2answers
103 views
php regular expression for video swf
iwant to get the video url from a object/embed html source. i read i can use regular expression to get it but me and regular expression are no friends
so heres what i have:
<?php
function ...
13
votes
5answers
3k views
php regex - find all youtube video ids in string
I have a textfield where users can try in about anything. Now i would like to parse it and find all youtube video urls and their ids.
Any idea how that works?
String sample:
Lorem Ipsum is ...
13
votes
3answers
289 views
What is the RFC complicant and working regular expression to check if a string is a valid URL
There is question by the almost the same name already:
What is the best regular expression to check if a string is a valid URL
I don't understand this stackoverflow. It seems like I need reputation ...
13
votes
7answers
9k views
remove multiple whitespaces in php
I'm getting $row['message'] from my mysql db and I need to remove all whitespaces like \n \t and so on.
$row['message'] = 'This is a Text \n and so on \t Text text.';
should be formated to:
...
13
votes
7answers
23k views
Matching a space in regex
I need to match a space character in php regex. Anyone got any ideas?
EDIT
I mean like "gavin schulz" the space in between the two words. I'll make another clarification. I did try and find more ...
11
votes
3answers
325 views
Can regex do this faster?
I want to capitalise each word and combine it into 1 word, e.g:
home = Home
about-us = AboutUs
Here is the function I use at the moment, can regex do this better or more efficient?
public ...
11
votes
2answers
8k views
REGEX: Grabbing everything until a specific word
ex: <a><strike>example data in here</strike></a>
I want everything inside the a tag, to the end
/<a>([^<]*)<\/a>/
It works when there are no additional ...
10
votes
4answers
97 views
Get itunes id from url
what is the best way to retrieve id from itunes app link?
let say i have these link:
http://itunes.apple.com/us/app/bring-me-sandwiches!!/id457603026?mt=8
...
10
votes
5answers
217 views
Create set of all possible matches for a given regex
I'm wondering how to find a set of all matches to a given regex with a finite number of matches.
For example:
All of these example you can assume they start with ^ and end with $
`hello?` -> ...
10
votes
1answer
365 views
How does this PCRE pattern detect palindromes?
This question is an educational demonstration of the usage of lookahead, nested reference, and conditionals in a PCRE pattern to match ALL palindromes, including the ones that can't be matched by ...
10
votes
3answers
2k views
Remove accents without using iconv
What is the best way to remove accents eg.
ÈâuÑ" becomes "Eaun"
Without using iconv
10
votes
5answers
3k views
How to add http:// if it's not exists in the URL?
How to add http:// to the url if there isn't a http:// or https:// or ftp:// ?
Example:
addhttp("google.com"); // http://google.com
addhttp("www.google.com"); // http://www.google.com
...
10
votes
3answers
735 views
Help Hacking Gruber's Liberal URL Regex
I've taken the Liberal URL Regex from Daring Fireball, merged it with some of Alan Storm improvements and hacked my way into fixing some bugs like support for IDN chars inside parentheses. This is ...
10
votes
8answers
8k views
Regex: matching up to the first occurrence of a character
Hey, I am looking for a pattern that matches everything until the first occurrence of a specific character, say a ";" - a semicolon.
I wrote this:
/^(.*);/
But it actually matches everything ...
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)
{
...
10
votes
6answers
815 views
Coalescing regular expressions in PHP
Suppose I have the following two strings containing regular expressions. How do I coalesce them? More specifically, I want to have the two expressions as alternatives.
$a = '# /[a-z] #i';
$b = '/ Moo ...
9
votes
2answers
137 views
RegEx: Remove non-letters UTF-8 Safe, Quickly
I'm trying to remove everything except valid letters (from any language) in PHP. I've been using this:
$content=preg_replace('/[^\pL\p{Zs}]/u', '', $content);
But it's painfully slow. Takes about ...
9
votes
4answers
63 views
How would I use regex to parse this chord scheme?
Consider the following input as an example:
[Ami]Song lyrics herp derp [F]song lyrics continue
[C7/B]Song lyrics continue on another [F#mi7/D]line
I need to parse the above and echo it as the ...
9
votes
2answers
894 views
How to validate an email in php5?
How can I validate the input value is a valid email address using php5. Now I am using this code
function isValidEmail($email){
$pattern = ...
9
votes
3answers
346 views
Japanese/chinese email addresses?
I'm making some site which must be fully unicode.
Database etc are working, i only have some small logic error.
Im testing my register form with ajax if fields are valid, in email field i check with ...
9
votes
5answers
11k views
PHP Regex to get youtube video ID?
Forgive me for the beginner regex question but I was hoping that someone could show me how to get the youtube id out of a url regardless of what other GET variables are in the URL.
Use this video for ...
9
votes
4answers
759 views
Intersection of two regular expressions
Im looking for function (PHP will be the best), which returns true whether exists string matches both regexpA and regexpB.
Example 1:
$regexpA = '[0-9]+';
$regexpB = '[0-9]{2,3}';
...
9
votes
6answers
2k views
How to mimic StackOverflow Auto-Link Behavior
With PHP how can I mimic the auto-link behavior of StackOverflow (which BTW is awesomely cool)?
For instance, the following URL:
...
9
votes
5answers
4k views
PHP ereg vs. preg
I have noticed in the PHP regex library there is a choice between ereg and preg. What is the difference? Is one faster than the other and if so, why isn't the slower one deprecated?
Are there any ...
8
votes
2answers
109 views
Sanitize sentence in php
The title may sound odd, but im kind of trying to set up this preg_replace that takes care of messy writers for a textarea. It has to:
if there is an exclamation sign, there should not be another ...
8
votes
4answers
116 views
Consolidate repeating pattern
I am working on a script that develops certain strings of alphanumeric characters, separated by a dash -. I need to test the string to see if there are any sets of characters (the characters that lie ...
8
votes
4answers
163 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
207 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 = ...
8
votes
2answers
875 views
Regex failing when pattern involves dollar sign ($)
I'm running into a bit of an issue when it comes to matching subpatterns that involve the dollar sign. For example, consider the following chunk of text:
Regular Price: $20.50 Final Price: ...
8
votes
7answers
761 views
How to replace text URLs and exclude URLs in HTML tags?
I need you help here.
I want to turn this:
sometext sometext http://www.somedomain.com/index.html sometext sometext
into:
sometext sometext <a ...
8
votes
3answers
161 views
(.*) instead of (.*?)
Suppose we have this html content, and we are willing to get Content1, Content2,.. with regular expression.
<li>Content1</li>
<li>Content2</li>
<li>Content3</li>
...
8
votes
7answers
3k views
Codeigniter Routes regex - using dashes in controller/method names
I'm looking for a one line route to route dashed controller and method names to the actual underscored controller and method names.
For example the URL
/controller-name/method-name-which-is-long/
...
8
votes
6answers
222 views
Is there any good book or website where I can learn php regular expressions?
Any recommendations, as I need to learn regular expressions to search for specific string and replace using specific operators. I have looked at the php functions such as preg_match && ...
8
votes
5answers
2k views
Need a good regex to convert URLs to links but leave existing links alone
I have a load of user-submitted content. It is HTML, and may contain URLs. Some of them will be <a>'s already (if the user is good) but sometimes users are lazy and just type www.something.com ...
8
votes
4answers
1k views
How can I get at the matches when using preg_replace in PHP?
I am trying to grab the capital letters of a couple of words and wrap them in spans. I am using preg_replace, but it's not outputting anything.
preg_replace("/[A-Z]/", "<span ...
7
votes
4answers
117 views
How long can a TLD possibly be?
I'm working on an email validation regex and I need to know how long the TLD could possibly be and still be valid. I did a few searches but couldn't find much information on the topic. So how long can ...