in reply to Re: Regular Expression
in thread Regular Expression
$html =~ /(<body[^>]+>)/s;
that should get you the opening tag.$html =~ /(<body[^>]*>)/s;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Regular Expression
by ikegami (Patriarch) on Jun 28, 2005 at 19:35 UTC | |
by Transient (Hermit) on Jun 28, 2005 at 19:42 UTC | |
Re^3: Regular Expression
by CountZero (Bishop) on Jun 28, 2005 at 19:29 UTC | |
by Transient (Hermit) on Jun 28, 2005 at 19:36 UTC | |
by ikegami (Patriarch) on Jun 28, 2005 at 19:38 UTC | |
by CountZero (Bishop) on Jun 28, 2005 at 19:54 UTC | |
by Transient (Hermit) on Jun 28, 2005 at 19:58 UTC | |
by CountZero (Bishop) on Jun 28, 2005 at 20:20 UTC | |
by ikegami (Patriarch) on Jun 28, 2005 at 19:36 UTC |