Got more questions? Find advice on: ASP | SQL | XML | Windows
in Search
Welcome to RegexAdvice Sign in | Join | Help

Browse by Tags

All Tags » php regular expression
Showing page 1 of 2 (17 total posts)
  • Uncommon URL pattern retrieval

    Hi, Anybody out there, I'd be immensly greatful if you helped me fix one regular expressions of mine. Basically I've written a regular expression in PHP identifying a pattern of a certain type of URL REGEX: /(http\:\/\/dx\.doi\.org\/.*?)(\s|$|;|>)/ it will catch strings of URLs from the 'http://dx.doi.org/' domain, looking ...
    Posted to Construction Advice (Forum) by ksyandagger on August 19, 2008
  • Help on extract url and image

    Hello how's everyone doin'? I need help with the regular expression in PHP (using preg_match_all) that would extract the url and the image of these two: <A HREF="movie1.mpg"><img name="movie1" src="images/tn_01.jpg" width="320" height="240" border="0" alt="Play ...
    Posted to Construction Advice (Forum) by esthon_wood on June 25, 2008
  • Help on extract url and image

    Hello how's everyone doin'? I need help with the regular expression in PHP (using preg_match_all) that could extract the url and the image of these two: <A HREF="movie1.mpg"><img name="movie1" src="images/tn_01.jpg" width="320" height="240" border="0" alt="Play ...
    Posted to Construction Advice (Forum) by esthon_wood on June 25, 2008
  • Re: Regex for unknown number of lines - Assistance Request

    It's OK, I think I've found the answer to my own question. The # signs bracket the actual regular expression, and the e and the s are modifiers - e is equivalent to PREG_REPLACE_EVAL and  s is equivalent to PCRE_DOTALL. Maybe these are things which are so familiar to the experienced players that they almost go without saying, but ...
    Posted to Construction Advice (Forum) by mtgradwell on June 8, 2008
  • Re: Regex for unknown number of lines - Assistance Request

    I have a problem which seems similar to the one documented here, so I hope somebody reading this can help me too. I have a page of PHP code which works some of the time, but not always, so I'm trying to discover the bugs in it. It includes the line  preg_match_all('#<!-- start content -->(.*?)<!-- end content -->#es', ...
    Posted to Construction Advice (Forum) by mtgradwell on June 7, 2008
  • Problem with negative lookbehind in PHP PCRE Library.

    I have the following regex statement I'm trying to run in PHP.  (?<!(end\s?zone|lower|upper)\s?)(view)  Testing against the following string: (matches in bold) "The endzone view goes hi upper view and he goes view and then goes view and view and view!!!" Notice "upper view" and "endzone view" are ...
    Posted to Construction Advice (Forum) by simshaun on May 6, 2008
  • pulling specific variable from querystring URL

    Hi, I am using PHP5 on a XAMP installation. I am trying to extract a specific variable from a querystring (which is stored in my MySQL DB) The format of the string is always consists of the same parameters (p, x & y), however sometimes they could be in a different order. A sample querysting is below and I am ...
    Posted to Construction Advice (Forum) by sanmi on February 12, 2008
  • Ascending numbers with specific separators

    Hello all, I'd like to check on a php page that a text string complies with the following rule : Contain numbers,  in ascending order, with only   ,    or    -     as separators The numbers represent requested items (like pages to print), my purpose is then to count the ...
    Posted to Construction Advice (Forum) by ldauphin on February 8, 2008
  • Needed: Regular Expression to escape single and double quotes

    Hello! I am using PHP and preg_replace.  I have output from an XSL transformation that I would like to insert into a mysql database.  I would like to construct a regular expression that escapes single and double quotes.  My data set looks like this: <escape>Welcome to Barbara's ...
    Posted to Construction Advice (Forum) by pimpkracker69 on January 29, 2008
  • RegEx PHP difficulties

    Hi! The given construction checks strings in the following format for a validation process of a user input. AB 123 YZZ-4 CD 123 OP-4 LUA EF 321 OP-4 RegEx: ^(?:AB|CD|EF)\s\d{1,3}(?:(\s[A-Z]{1,4}-?\d{1,3}?\s?[A-Z]{0,4})|-\d{1,2}) I checked it with the Expresso 3.0 regex software - working fine. When I insert it into my PHP script ( ...
    Posted to Construction Advice (Forum) by Andre on August 19, 2007
1 2 Next >