加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

Learning Perl: 2.8. The chomp Operator

发布时间:2020-12-15 20:57:04 所属栏目:大数据 来源:网络整理
导读:? 2.8. The chomp Operator The first time you read about the chomp operator,it seems overspecialized. It works on a variable,and the variable has to hold a string. If the string ends in a newline character, chomp can get rid of the newline.

Previous Page

Next Page

?

2.8. The chomp Operator

The first time you read about the chomp operator,it seems overspecialized. It works on a variable,and the variable has to hold a string. If the string ends in a newline character,chomp can get rid of the newline. That's (nearly) all it does as in this example:

    $text = "a line of text/n"; # Or the same thing from <STDIN>
    chomp($text);               # Gets rid of the newline character

It turns out to be so useful,you'll put it into nearly every program you write. As you see,it's the best way to remove a trailing newline from a string in a variable. In fact,there's an easier way to use chomp because of a simple rule: whenever you need a variable in Perl,you can use an assignment instead. Perl does the assignment and then it uses the variable in whatever way you requested. The most common use of chomp looks like this:

    chomp($text = <STDIN>); # Read the text,without the newline character
    ?
    $text = <STDIN>;        # Do the same thing...
    chomp($text);           # ...but in two steps

At first glance,the combined chomp may not seem to be the easy way,especially if it seems more complex. If you think of it as two operations,read a line and chomp it,then it's more natural to write it as two statements. If you think of it as one operation,read just the text and not the newline,it's more natural to write the one statement. Since most other Perl programmers are going to write it that way,you may as well get used to it now.

chomp is a function. As a function,it has a return value,which is the number of characters removed. This number is hardly ever useful:

    $food = <STDIN>;
    $betty = chomp $food; # gets the value 1 - but you knew that!

As you see,you may write chomp with or without the parentheses. This is another general rule in Perl: except in cases where it changes the meaning to remove them,parentheses are always optional.

If a line ends with two or more newlines,[*]chomp removes only one. If there's no newline,it does nothing and returns zero.

[*] This situation can't arise if you're reading a line at a time,but it can when you have set the input separator ($/) to something other than newline,use the read function,or perhaps have glued some strings together yourself.

Previous Page

Next Page

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读