Prel-chomp 操作符

Prel-chomp 操作符


chomp用于变量上,而且这个变量只能是字符串,用于去除字符串的换行符。

print "Please input :\n";
$input = <STDIN>;
chomp($input);
print "Output you input is : $input.\n";

print "Please input another :\n";
$input_other = <STDIN>;
print "Output without chomp : $input_other.\n";
#end

输出为:
Please input :
Learing perl
Output you input is : Learing perl.
Please input another :
Learing perl
Output without chomp : Learing perl
.

在第二个Learing perl输出之后有一个换行的动作,第一个没有是因为chomp去掉了换行符。

你可能感兴趣的:(prel)