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";