Thread Sortierung in Flatfile DB: Textbasierte BD (9 answers)
Opened by vaan at 2007-02-23 00:15

renee
 2007-02-23 15:40
#35273 #35273
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Das hier sollte soweit funktionieren:
Code: (dl )
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
#!/usr/bin/perl

use strict;
use warnings;
use Tie::File;

my $id_from_form=5;
my $move="up";
my $flat_file = './flat.file';

tie my @array, 'Tie::File',$flat_file or die $!;
chomp @array;
my ($index) = grep{$array[$_] =~ /^$id_from_form\*\*/}(0..$#array);
print $index,"\n";
if($move eq 'up'){
my $elem = $array[$index];
$array[$index] = $array[$index-1];
$array[$index-1] = $elem;
}
else{
my $elem = $array[$index];
$array[$index] = $array[$index+1];
$array[$index+1] = $elem;
}
$_ . "\n" for @array;
untie @array;
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 Sortierung in Flatfile DB: Textbasierte BD