perl chomp

  • chomp VARIABLE

  • chomp( LIST )
  • chomp

    This safer version of chop removes any trailingstring that corresponds to the current value of$/ (also known as $INPUT_RECORD_SEPARATORin the English module). It returns the totalnumber of characters removed from all its arguments. It's often used toremove the newline from the end of an input record when you're worriedthat the final record may be missing its newline. When in paragraphmode ($/ = ''), it removes all trailing newlines from the string.When in slurp mode ($/ = undef) or fixed-length record mode($/ is a reference to an integer or the like;see perlvar), chomp won't remove anything.If VARIABLE is omitted, it chomps $_ . Example:

     
      
    1. while (<>) {
    2. chomp; # avoid \n on last field
    3. my @array = split(/:/);
    4. # ...
    5. }

    If VARIABLE is a hash, it chomps the hash's values, but not its keys,resetting the each iterator in the process.

    You can actually chomp anything that's an lvalue, including an assignment:

     
      
    1. chomp(my $cwd = `pwd`);
    2. chomp(my $answer = <STDIN>);

    If you chomp a list, each element is chomped, and the total number ofcharacters removed is returned.

    Note that parentheses are necessary when you're chomping anythingthat is not a simple variable. This is because chomp $cwd = `pwd`;is interpreted as (chomp $cwd) = `pwd`;, rather than aschomp( $cwd = `pwd` ) which you might expect. Similarly,chomp $a, $b is interpreted as chomp($a), $b rather thanas chomp($a, $b).

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值