Re: PHP and regular expressions
- From: "BKDotCom" <bkfake-google@xxxxxxxxx>
- Date: 28 Feb 2007 13:25:12 -0800
__where $document is a handle on the file__
the 2nd parameter should be a string
read the file to a string...
Do you really want the space around "(.+)" ?
you can clean this up by enclosing it in '' rather than ""
$regexp = '%<table cellspacing="0" cellpadding="0"> (.+) <img
height="1" alt="Today's News" />%s';
On Feb 28, 12:03 pm, "Damo" <cormacdeba...@xxxxxxxxx> wrote:
Hi,
I'm new to this group and regular expressions. I want to extract text
from a newspaper website using regular expressions and php
I'm using this regular expression at the moment
$regexp = "%<table cellspacing=\"0\" cellpadding=\"0\"> (.+) <img
height=\"1\" alt=\"Today's News\" />%s";
Each news story is in between those tags , So if I extract those
chunks of html using
preg_match($regexp,$document,$matches);
where $document is a handle on the file. I can store them in %matches
for further processing. Alas it does not work and i cannot figure out
why
Can anyone help?
Thanks
.
- References:
- PHP and regular expressions
- From: Damo
- PHP and regular expressions
- Prev by Date: Re: strange shopping cart number
- Next by Date: Re: change URL variables
- Previous by thread: PHP and regular expressions
- Next by thread: Exists installer written in pure php?
- Index(es):
Relevant Pages
|