Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
84 views

regex, php, and the evil nested (?R)

UPDATE So I am still messing with this, and have gotten as far as finding all the instances of tags, though I'd rather JUST find the deepest stacked instance, as life would be easier that way.. ...
5
votes
5answers
80 views

How preg_match_all() processes strings?

I'm still learning a lot about PHP and string alteration is something that is of interest to me. I've used preg_match before for things like validating an email address or just searching for ...
5
votes
7answers
322 views

How to get all captures of subgroup matches with preg_match_all()?

Update/Note: I think what I'm probably looking for is to get the captures of a group in PHP. Referenced: PCRE regular expressions using named pattern subroutines. (Read carefully:) I have a ...
4
votes
1answer
66 views

RegEx and split camelCase

I want to get an array of all the words with capital letters that are included in the string. But only if the line begins with "set". For example: - string "setUserId", result array("User", "Id") - ...
4
votes
4answers
266 views

Using a regular expression to extract URLs from links in an HTML document

I need to capture all links in a given html. Here is sample code: <div class="infobar"> ... some code goes here ... <a href="/link/some-text">link 1</a> <a ...
4
votes
4answers
99 views

How to exclude a symbol within [ ] with RegEx

I am using PHP preg_match_all, and this is what I can get so far.... [A-Za-z+\W]+\s[\d] The only problem is that I need the \W to not be a ". So I have tried: [A-Za-z+[^\dA-Za-z"]\s?]+\s[\d] ...
4
votes
2answers
2k views

Php regular expression to match a div

<?php /** * @author Joomlacoders * @copyright 2010 */ $url="http://urlchecker.net/html/demo.html"; $innerHtml=file_get_contents($url); //echo $innerHtml; ...
3
votes
3answers
64 views

Grab text between specific tags in PHP file

Sorry if this question has already been answered elsewhere. I looked through stack overflow and couldn't find exactly what I was looking for. I need to know how to scan multiple php files in a ...
3
votes
4answers
64 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
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
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
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
2answers
250 views

Finding urls from text string via php and regex?

I know the question title looks very repetitive. But some of the solution i did not find here. I need to find urls form text string: $pattern = ...
3
votes
1answer
179 views

PHP Regex Expression Involving Japanese

My goal is to filter through a Microsoft Word Document (.docx) grabbing all Japanese kanji and kana. The current code I am working with is the following: ...
3
votes
2answers
162 views

preg_last_error() saying no error when there appears to be an error

EDIT: I understand this is a hard to replicate issue, but if someone could suggest pointers as to what would be probable cause for this issue, that would be really helpful. EDIT: As requested, here's ...
3
votes
1answer
1k views

preg_match_all , get all img tag that include a string

this code get all img tags preg_match_all('/<img[^>]+>/i',$a,$page); but I want get tags that their filenames includes "next.gif" or "pre.gif" for example : $page = ' <img border="0" ...
3
votes
1answer
341 views

preg_match_all: Why would “this” match but “that” won't?

So, I'm basically trying to match anything inside (and including) object tags, with this: <?php preg_match_all('/<object(.*)<\/object>/', $blah, $blahBlah); ?> It finds a match for ...
3
votes
3answers
108 views

extract every occurrence on string

I have a string of the form "a-b""c-d""e-f"... Using preg_match, how could I extract them and get an array as: Array ( [0] =>a-b [1] =>c-d [2] =>e-f ... [n-times] ...
3
votes
2answers
1k views

Is there a way to pass another parameter in the preg_replace_callback callback function?

mmmh guys, i really hope my english is good enaught to explain what i need. Lets take this example (that is just an example!) of code: class Something(){ public function Lower($string){ ...
3
votes
6answers
678 views

How can I match everything in a string until the second occurrence of a delimiter with a regular expression?

I am trying to refine a preg_match_all by finding the second occurrence of a period then a space: <?php $str = "East Winds 20 knots. Gusts to 25 knots. Waters a moderate chop. Slight chance of ...
3
votes
2answers
386 views

Regex Expert - PHP Lookaround

I am absolutely useless at regular expressions, so i'd appreciate your help. I have a string, such as this: $foo = 'Hello __("How are you") I am __("very good thank you")' I know it's a strange ...
2
votes
1answer
60 views

Emoticon Matching - PHP

I need to extract different types of terms from a string. I successfully am extracting alphanumeric characters, currency numbers, and different numerical formats with this regex: $numalpha = ...
2
votes
1answer
57 views

preg_match_all not working with mysql database results variables?

-- update -- Ok, I've narrowed this down to the keywords being checked, The keywords will only match with spaces between them if they are hard coded in to the array. If the keywords with spaces are ...
2
votes
3answers
48 views

Having trouble with this regular expression in PHP

I'm trying to run regular expression on the following string with PHP using preg_match_all function "{{content 1}}{{content 2}}" The result I'm looking for is array with 2 matches inside {{ and }} ...
2
votes
4answers
39 views

preg_match doesn't capture the content

what is wrong with my preg_match ? preg_match('numVar("XYZ-(.*)");',$var,$results); I want to get all the CONTENT from here: numVar("XYZ-CONTENT"); Thank you for any help!
2
votes
1answer
164 views

Grab/download images from multiple pages using php preg_match_all & cURL

So I'm trying to grab some images from another site, the problem is each image is on a different page IE: id/1, id/2, id/3 etc etc so far I have the code below which can grab an image from the ...
2
votes
1answer
48 views

php RegExp: how to use newline in expression?

For example it works: {<div\s+class=\"article\"><h2(.*)</div>}s If I do this way, I get nothing: {<div\s+class=\"article\"> <h2(.*) </div>}s I suspect that I ...
2
votes
2answers
103 views

regex match between 2 strings

For example I have the text a1aabca2aa3adefa4a I want to extract 2 and 3 with a regex between abc and def, so 1 and 4 should be not included in the result. I tried this ...
2
votes
2answers
56 views

php preg_match_all results from (numerical) STRING to DECIMAL - type

I have script that identifies with preg_match_all some numbers from a given file and in a given format '#(\d\,\d\d\d\d)#' (decimal, with 4 decimals). With them, later, I need to do some math ...
2
votes
2answers
60 views

Extracting a 'word' matching certain criteria

I have the following string: SEDCVBNT S800BG09 7GFHFGD6H 324235346 RHGF7U S8-00BG/09 7687678 and the following regex: preg_match_all('/\b(?=.+[0-9])(?=.+[A-Z])[A-Z0-9-\/]{4,20}/i', $string, ...
2
votes
2answers
122 views

Preg_match_all returning array within array?

I am trying to get the information out of this array, but for some reason it is nesting everything into $matches[0]. <? $file = shell_exec('pdf2txt.py docs/April.pdf'); ...
2
votes
4answers
159 views

regex, problem with backreference in pattern with preg_match_all

i wonder what is the problem with the backreference here: preg_match_all('/__\((\'|")([^\1]+)\1/', "__('match this') . 'not this'", $matches); it is expected to match the string between __('') but ...
2
votes
4answers
225 views

preg_match_all and preg_replace in Ruby

I am transitioning from php to ruby and I am trying to figure the cognate of the php commands preg_match_all and preg_replace in ruby. Thank you so much!
2
votes
2answers
107 views

How to get (in PHP) all substrings, which describes a regular expression?

I'm creating regular expression in the form: A | B | C ... automatically, by program, where A, B, C, ... are constant strings. I need to find all the matches that correspond to these regular ...
2
votes
1answer
106 views

Regex pattern matches fine but output is not complete

I am trying this regex pattern: $string = '<div class="className">AlwaysTheSame:</div>Subtitle <br /><span class="anotherClass">entry1</span><span ...
2
votes
5answers
283 views

Limit the number of results using preg_match_all PHP

Is there any way to limit the number of matches that will be returned using preg_match_all? So for example, I want to match only the first 20 <p> tags on a web page but there are 100 <p> ...
2
votes
4answers
215 views

How to match words with common prefix in PHP?

I need to write a regex to match the word. To find exact word can be done using /\bword\b/ pattern. But I want the pattern to find word, words, wording and so on. for example i want to write a ...
2
votes
3answers
185 views

Regex problem: Can't match a variable length pattern

I have a problem with regex, using preg_match_all(), to match something of a variable length. What I am trying to match is the traffic condition after the word 'Congestion' What I came up with is ...
2
votes
1answer
328 views

Select a tag from multiline html code using preg_match_all

I want to use the php function preg_match_all to find a part of the html code to replace it by another one. This is what I need to find: <attachfiles> tag{link} attr{rel="stylesheet" ...
2
votes
4answers
183 views

Regular Expressions: get what is outside of the brackets

I'm using PHP and I have text like: first [abc] middle [xyz] last I need to get what's inside and outside of the brackets. Searching in StackOverflow I found a pattern to get what's inside: ...
2
votes
3answers
187 views

Regular expression for ignoring an optional comma

I have a text: $test = <<<START DOTHIS themsp1 @theint = 431, @theText = "%dumdum%", @operator = 'ANY', @crossCheck = 'PLUS' START; The filter: $regEx = ...
2
votes
1answer
255 views

Regex - Grab a specific word within specific tags

I don't consider myself a PHP "noob", but regular expressions are still new to me. I'm doing a CURL where I receive a list of comments. Every comment has this HTML structure: <div ...
2
votes
4answers
102 views

regular expression search and replace

<br /> <br /> <br /> <br /> <br /> <br /> but I want replace <br /> fourth with <hr /> And this output <br /> <br /> <br ...
2
votes
2answers
916 views

URL matching using preg_match_all in PHP and regex

I am trying to build a crawler that gets the movie urls from an imdb list. I am able to get all the links on the page into an array and want to select only those ones with "title" in them. ...
2
votes
1answer
58 views

What am I doing wrong with preg_match_all?

The object is to find sets such as <!-- content:start -->some content here<!-- content:stop --> and process each one to put it into an array, but every time it find no matches and echos my ...
2
votes
6answers
272 views

Regex to match string between %

I'm trying to match substrings that are enclosed in %'s but preg_match_all seems to include several at the same time in the same line. Code looks like this: preg_match_all("/%.*%/", ...
2
votes
4answers
1k views

Extract keywords/tags from string using Preg_match_all

I have the following code $str = "keyword keyword 'keyword 1 and keyword 2' another 'one more'".'"another keyword" yes,one,two'; preg_match_all('/"[^"]+"|[^"\' ,]+|\'[^\']+\'/',$str,$matches); echo ...
1
vote
2answers
30 views

preg_match_all regex smilies

I've imported an old guestbook into drupal, but some smilies from old system will be deleted, so I need to delete it from my content string smilies example: :lol: :nice: ... as you can see all of ...
1
vote
3answers
40 views

PHP preg_match_all

I would like to ask about php's preg_match_all. suppose we have the sample string below: This is a clause with -value1- and -_value_2_- having a subclause of -value.3- items. And i would ...
1
vote
2answers
28 views

PHP - preg_match_all - Loose email match pattern that allows spaces and double @

I am going through our old site files and data that has our members emails and correspondence for 10 years. I am extracting all of the email addresses (and botched email entries) and adding them to ...

1 2 3 4 5 6