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

rio
 2005-07-01 19:21
#5152 #5152
User since
2004-05-31
105 Artikel
BenutzerIn
[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
<!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>


das ist die seite die in $content drin steht nun will ich den inhalt aus <div class="logoTopLeft">das ist ein test</div> ( das ist ein test) weil der text automatisch generiert wird  und sih verändern kann

das hab ih bis jetzt mit
Code: (dl )
s/<div.class=\"logoTopLeft\">(.*)<\/div>/$content/g;

aber in content steht immernoh dasgleihe drinn und wenn ich
Code: (dl )
$dax =~ s/<div.class=\"logoTopLeft\">(.*)<\/div>/$content/g;


dann ist $dax leer und an $content änderts ich auch nix , ih will hat den inhalt aus ontent durchsuchen , und alles was nicht aufs pattern passt abschneiden ohne die $content variable zu verändern :>\n\n

<!--EDIT|rio|1120231332-->

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