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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
package MDK::Common::String;
use vars qw(@ISA %EXPORT_TAGS @EXPORT_OK);
@ISA = qw(Exporter);
@EXPORT_OK = qw(bestMatchSentence formatList formatError formatTimeRaw formatLines formatAlaTeX warp_text);
%EXPORT_TAGS = (all => [ @EXPORT_OK ]);
# count the number of character that match
sub bestMatchSentence {
my $best = -1;
my $bestSentence;
my @s = split /\W+/, shift;
foreach (@_) {
my $count = 0;
foreach my $e (@s) {
$count+= length ($e) if /^$e$/;
$count+= length ($e) if /^$e$/i;
$count+= length ($e) if /$e/;
$count+= length ($e) if /$e/i;
}
$best = $count, $bestSentence = $_ if $count > $best;
}
wantarray ? ($bestSentence, $best) : $bestSentence;
}
sub formatList {
my $nb = shift;
join(", ", @_ <= $nb ? @_ : (@_[0..$nb-1], '...'));
}
sub formatError {
my ($err) = @_;
$err =~ s/ at .*?$/\./ if !$::testing;
$err;
}
sub formatTimeRaw {
my ($s, $m, $h) = gmtime($_[0]);
sprintf "%d:%02d:%02d", $h, $m, $s;
}
sub formatLines {
my ($t, $tmp);
foreach (split "\n", $_[0]) {
if (/^\s/) {
$t .= "$tmp\n";
$tmp = $_;
} else {
$tmp = ($tmp ? "$tmp " : ($t && "\n") . $tmp) . $_;
}
}
"$t$tmp\n";
}
sub formatAlaTeX {
my ($t, $tmp);
foreach (split "\n", $_[0]) {
if (/^$/) {
$t .= ($t && "\n") . $tmp;
$tmp = '';
} else {
$tmp = ($tmp && "$tmp ") . (/^\s*(.*?)\s*$/)[0];
}
}
$t . ($t && $tmp && "\n") . $tmp;
}
sub warp_text {
my ($text, $width) = @_;
$width ||= 80;
my @l;
foreach (split "\n", $text) {
my $t = '';
foreach (split /\s+/, $_) {
if (length "$t $_" > $width) {
push @l, $t;
$t = $_;
} else {
$t = "$t $_";
}
}
push @l, $t;
}
@l;
}
1;
|