Learning Perl: 8.5. Interpolating into Patterns

Previous Page
Next Page

 

8.5. Interpolating into Patterns

The regular expression is double-quote interpolated as if it were a double-quoted string. This allows us to write a quick grep-like program like this:

    #!/usr/bin/perl -w
    my $what = "larry";

    while (<>) {
      if (/^($what)/) {  # pattern is anchored at beginning of string
        print "We saw $what in beginning of $_";
      }
    }

The pattern will be built up out of whatever's in $what when we run the pattern match. In this case, it's the same as if we had written /^(larry)/, looking for larry at the start of each line.

We didn't have to get the value of $what from a literal string and could have gotten it from the command-line arguments in @ARGV:

    my $what = shift @ARGV;

If the first command-line argument is fred|barney, the pattern becomes /^(fred|barney)/, looking for fred or barney at the start of each line.[] The parentheses (which weren't necessary when searching for larry) have become important because without them we'd be matching fred at the start or barney anywhere in the string.

[] The astute reader will know that you can't generally type fred|barney as an argument at the command line because the vertical bar is a shell metacharacter. See the documentation to your shell to learn about how to quote command-line arguments.

With that line changed to get the pattern from @ARGV, this program resembles the Unix grep command. But we have to watch out for metacharacters in the string. If $what contains 'fred(barney', the pattern will look like /^(fred(barney)/. You know that can't workit'll crash your program with an invalid regular expression error. With some advanced techniques,[*] you can trap this kind of error (or prevent the magic of the metacharacters in the first place) so it won't crash your program. But for now, just know that if you give your users the power of regular expressions, they'll need the responsibility to use them correctly.

[*] In this case, you would use an eval block to trap the error, or you would quote the interpolated text using quotemeta (or its /Q equivalent form) so it's no longer treated as a regular expression.

Previous Page
Next Page
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Project2 (D:/HFSStemp/) TeeModal (DrivenModal) [info] Simulation for Setup1 is already running. To resimulate stop prior simulation of this setup. (10:38:30 下午 7月 14, 2023) [error] Unable to create child process: hf3d. (10:40:23 下午 7月 14, 2023) [error] The attempted launch of solvers via MPI failed while connecting to communication pipes. The probable cause is failure to install the vendor MPI on one or more machines or password authentication failure for MPI during the launch attempt. (10:40:23 下午 7月 14, 2023) [info] An interpolating frequency sweep with 451 points has been started using HFSS - Solving Distributed. (10:40:23 下午 7月 14, 2023) [error] Unable to locate message 11189 in HFSS message library. (10:40:23 下午 7月 14, 2023) [error] Simulation completed with execution error on server: Local Machine. (10:40:23 下午 7月 14, 2023) [info] Simulation for Setup1 is already running. To resimulate stop prior simulation of this setup. (10:43:06 下午 7月 14, 2023) [error] Unable to create child process: hf3d. (10:44:35 下午 7月 14, 2023) [error] The attempted launch of solvers via MPI failed while connecting to communication pipes. The probable cause is failure to install the vendor MPI on one or more machines or password authentication failure for MPI during the launch attempt. (10:44:35 下午 7月 14, 2023) [info] An interpolating frequency sweep with 451 points has been started using HFSS - Solving Distributed. (10:44:35 下午 7月 14, 2023) [error] Unable to locate message 11189 in HFSS message library. (10:44:35 下午 7月 14, 2023) [error] Simulation completed with execution error on server: Local Machine. (10:44:35 下午 7月 14, 2023)
07-15
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值