Ryan S wrote:
Hey!
Thansk for replying!
It is obvious I haven't had my caffeine yet. This is my last try to
get the pattern straight:
hello
hello
those
hello
hello
this
rose
hello
nose
hello
that
hello
END_OF_HTML;
$tags = array();
$tags[] = 'p';
$tags[] = 'a';
$attr = array();
$attr[] =
Pretty close.
The only thing I'd suggest is a different way of wording step 2:
Can contain anything but '>' until step 3.
As for the switches/modifiers (Uis), check out:
http://us.php.net/manual/en/reference.pcre.pattern.modifiers.php
U = ungreedy
i = case-insensitive (|p| matches 'p' and/or 'P'
> http://www.ezee.se/tests/para_regex2.php.txt
Yep, sorry... Just add the s
preg_match_all('|]*>(.*)|Uis', $myText, $myArray);
Swett! It works!
If you _do get time_, would love to know the actual meaning of
|]*>(.*)|Uis
because although I do appreciate the help and the code, am learni
Ryan S wrote:
preg_match_all('|]*>(.*)|Ui', $myText, $myArray);
Hey!
Thanks for replying.
Your preg_match_all works like a charm, but for some reason catches only 8 out
of 9 paragraphs... its really weird. I have upped the test page to
http://www.ezee.se/tests/para_regex2.php.txt so you
preg_match_all('|]*>(.*)|Ui', $myText, $myArray);
Hey!
Thanks for replying.
Your preg_match_all works like a charm, but for some reason catches only 8 out
of 9 paragraphs... its really weird. I have upped the test page to
http://www.ezee.se/tests/para_regex2.php.txt so you can have a look
Ryan S wrote:
To say I suck at regex is an understatement so really need any help I can get on this, I have a page of text
with different html tags in them, but each "block" of text has a or a <
class="something"> tag... anybody have any regex that will catch each of these paragraphs and p
Aschwin Wesselius wrote:
Aschwin Wesselius wrote:
Ryan S wrote:
Hey all!
To say I suck at regex is an understatement so really need any help
I can get on this, I have a page of text with different html tags in
them, but each "block" of text has a or a < class="something">
tag... anybody h
Aschwin Wesselius wrote:
Ryan S wrote:
Hey all!
To say I suck at regex is an understatement so really need any help I
can get on this, I have a page of text with different html tags in
them, but each "block" of text has a or a < class="something">
tag... anybody have any regex that will ca
Ryan S wrote:
Hey all!
To say I suck at regex is an understatement so really need any help I can get on this, I have a page of text
with different html tags in them, but each "block" of text has a or a <
class="something"> tag... anybody have any regex that will catch each of these paragraph
> To say I suck at regex is an understatement so really need any help I can
> get on this, I have a page of text with different html tags in them, but each
> "block" of text has a or a < class="something"> tag... anybody have any
> regex that will catch each of these paragraphs and put then
On Mon, May 5, 2008 at 9:59 PM, Ryan S <[EMAIL PROTECTED]> wrote:
> To say I suck at regex is an understatement so really need any help I can
> get on this, I have a page of text with different html tags in them, but each
> "block" of text has a or a < class="something"> tag... anybody have any
Hey all!
To say I suck at regex is an understatement so really need any help I can get
on this, I have a page of text with different html tags in them, but each
"block" of text has a or a < class="something"> tag... anybody have any
regex that will catch each of these paragraphs and put then
12 matches
Mail list logo