Leser: 2
8 Einträge, 1 Seite |
1 2 3 4
#!/usr/bin/perl use strict; use warnings; my $daten = "Hallo Welt"; open (my $fh, '>', "output.txt") and print $fh $daten;
RalphFFM+2008-09-04 11:38:39--PS: Es sind keine Boardtags mehr da. :-(
na wo sind sie
RalphFFM+2008-09-04 11:38:39--Hallo, wieso beschwert sich strict in dem folgenden Fall:
...
open (my $fh, '>', "output.txt") and print $fh $daten;
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
<tr>
<td class="replyLeft"><b>Boardtags:</b>
(<a href="/helptags/" rel="external">Hilfe zu den Boardtags</a>)
</td>
<td class="replyRight">
<div id="js_buttons">
<input type="button" name="button_bold" value="+b" onclick="javascript:pb_bold()" title="Fett" class="button" />
<input type="button" name="button_italic" value="+i" onclick="javascript:pb_italic()" title="kursiv" class="button" />
<input type="button" name="button_strike" value="+s" onclick="javascript:pb_strike()" title="Durchgestrichen" class="button" />
<input type="button" name="button_truetype" value="+tt" onclick="javascript:pb_truetype()" title="Truetype-Font" class="button" />
<input type="button" name="button_underline" value="+u" onclick="javascript:pb_underline()" title="unterstreichen" class="button" />
<input type="button" name="button_code" value="+code" onclick="javascript:pb_code()" title="code-tag" class="button" />
<input type="button" name="button_perl" value="+perl" onclick="javascript:pb_perl()" title="perlcode-tag" class="button" />
<input type="button" name="button_cpp" value="+cpp" onclick="javascript:pb_cpp()" title="tag fuer C/C++" class="button" />
<input type="button" name="button_nop" value="+nop" onclick="javascript:pb_nop()" title="Alle tags innerhalb dieses Tags soll nicht ersetzt werden" class="button" />
<input type="button" name="button_url" value="url" onclick="javascript:pb_url()" title="Link zu einer anderen Webseite eingeben" class="button" />
<input type="button" name="button_cpan" value="cpan" onclick="javascript:pb_cpan()" title="Link zur CPAN-Modulsuche angeben" class="button" />
<input type="button" name="button_dist" value="dist" onclick="javascript:pb_dist()" title="Link zur CPAN-Distribution angeben" class="button" />
<input type="button" name="button_perldoc" value="perldoc" onclick="javascript:pb_perldoc()" title="Link zum Wiki" class="button" />
</div>
</td>
</tr>
8 Einträge, 1 Seite |