Musisz się zalogować, by móc dodawać wpisy na forum.
wybrane tematy :
perl trim
perlmonk
nie zarejestrowany
193.203.192.15
|
|
this function can be used to remove white characters from beginning and end of the string
sub trim($)
{
my $string = shift;
$string =~ s/^\s+//;
$string =~ s/\s+$//;
return $string;
}
|
1386 dni temu
|
|
|
|
wybrane tematy (tagi)
dodaj temat (tag) :
|
bywalcy tego forum :
perlmonk
|
dodatkowe informacje o
perl trim :
gery.pl
|