Your Open Source

 
Related Posts

Trim function in CGI-PERL

Trim() function in perl:-

The following function to trim the strings,
sub trim($)

{
my $string = shift;
$string =~ s/^\s+//;
$string =~ s/\s+$//;
return $string;
}

  • hits 67083
  • datetime Aug 10 09 07:05:59
  • author Sekar
  • rating

Rating : 12345
Tags :- CGI - PERL

Answers

No Answers..
Your Name:
Your Answers :
<> is a code tag
Preview
Enter the verification code: