ACIL FM
Dark
Refresh
Current DIR:
/usr/share/doc/perl-HTML-Parser/eg
/
usr
share
doc
perl-HTML-Parser
eg
Upload
Zip Selected
Delete Selected
Pilih semua
Nama
Ukuran
Permission
Aksi
hanchors
1.17 MB
chmod
View
DL
Edit
Rename
Delete
hbody
729 B
chmod
View
DL
Edit
Rename
Delete
hdisable
740 B
chmod
View
DL
Edit
Rename
Delete
hdump
708 B
chmod
View
DL
Edit
Rename
Delete
hform
2.44 MB
chmod
View
DL
Edit
Rename
Delete
hlc
717 B
chmod
View
DL
Edit
Rename
Delete
hrefsub
3 MB
chmod
View
DL
Edit
Rename
Delete
hstrip
1.73 MB
chmod
View
DL
Edit
Rename
Delete
htext
612 B
chmod
View
DL
Edit
Rename
Delete
htextsub
936 B
chmod
View
DL
Edit
Rename
Delete
htitle
461 B
chmod
View
DL
Edit
Rename
Delete
Edit file: /usr/share/doc/perl-HTML-Parser/eg/hlc
#!/usr/bin/perl # This script will assume that the first command line argument # is a file containing HTML, and return a version # where all the tags are converted to lowercase. use strict; use warnings; use HTML::Parser (); HTML::Parser->new( start_h => [\&start_lc, "tokenpos, text"], end_h => [sub { print lc shift }, "text"], default_h => [sub { print shift }, "text"], )->parse_file(shift) || die "Can't open file: $!\n"; sub start_lc { my ($tpos, $text) = @_; for (my $i = 0; $i < @$tpos; $i += 2) { next if $i && ($i / 2) % 2 == 0; # skip attribute values $_ = lc $_ for substr($text, $tpos->[$i], $tpos->[$i + 1]); } print $text; }
Simpan
Batal
Isi Zip:
Unzip
Create
Buat Folder
Buat File
Terminal / Execute
Run
Chmod Bulk
All File
All Folder
All File dan Folder
Apply