Thread VB Script --> Perl Code (9 answers)
Opened by renee at 2005-08-10 12:58

renee
 2005-08-10 14:39
#10386 #10386
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
#! /usr/bin/perl

my @values = (8,0,0,0,65,80,76,45,71,109,98,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);

my $ssid = '';

for my $val(@values){
$ssid .= chr($val) if($val > 31 && $val < 127);
}

print $ssid,"\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 VB Script --> Perl Code