Thread regular expression, ausschneiden oder was?: html tag inhalt parsen :> (10 answers)
Opened by rio at 2005-07-01 18:43

renee
 2005-07-01 19:25
#5153 #5153
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#! /usr/bin/perl

use strict;
use warnings;

my $html = qq~<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>
<head>
<title>PartyPeople-Inside.de</title>
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="rahmen.css" />
<link rel="stylesheet" type="text/css" href="links.css" />
<link rel="stylesheet" type="text/css" href="formulare.css" />
<link rel="stylesheet" type="text/css" href="text.css" />
</head>
<body>

<!-- **********Die oberen Beiden logos********** -->
<div class="rahmenleft">dsf

<div class="logoTopLeft">das ist ein test</div>
</div>

</body>
</html>~;

my ($var) = $html =~ m!<div class="logoTopLeft">(.*?)</div>!s;
print $var,"\n";
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread regular expression, ausschneiden oder was?: html tag inhalt parsen :>