Smart Matching is a comparative operator in Perl (denoted ~~) that attempts to infer the appropriate comparison from the types of the two operands.
0
votes
1answer
62 views
Can someone explain this bug to me? [closed]
I'm trying to compare two arrays using the smart ~~ match operator. However, it's not working properly. I think I may have I've found a bug in it. See below.
use strict; use warnings;
use ...
0
votes
1answer
222 views
Can't install RMagick Can't find MagickWand.h
I recently start the migrations of my sites from accelerator to smartmachine.
Everything was ok, but now I can't install the rmagick gem, when I run "sudo gem install rmagick" the console shows the ...
1
vote
1answer
88 views
Why does this smart match not work when using references?
I am currently reading Intermediate Perl from O'Reilly and am attempting to to do one of the exercises. I am new to references in Perl, so I hope that I am not misunderstanding something and coding ...
3
votes
2answers
160 views
How does smartmatch array against number work in Perl?
In the "Programming Perl" it is said that when using ~~ with any on the left and num on the right a result of the smartmatch would be the comparison for numeric equality.
So I suppose that the ...
5
votes
3answers
298 views
about ~~ operator for arrays in perl (why @a~~(1,2,3) does not work)
I have
@a=(1,2,3);print (@a~~(1,2,3))
and
@a=(1,2,3);print (@a==(1,2,3))
The first one is the one I expect to work, but it does not print anything. The second one does print 1.
Why? Isn't ...
7
votes
2answers
225 views
Perl - smart matching of slices
I have found one confusing me thing around smart matching of slices (it happens for both arrays and hashes, below there is an example based on arrays):
This script smart-matches slices of two arrays. ...
3
votes
2answers
182 views
Is ~~ a short-circuit operator?
From the Smart matching in detail section in perlsyn:
The smart match operator
short-circuits whenever possible.
Does ~~ have anything in common with short circuit operators (&&, ||, ...
6
votes
1answer
255 views
Perl + smart matching doesn't work
Howdy! I've tried to match simple string with regular expression pattern but it doesn't print "ok". What's wrong with this piece of perl code?
#!/usr/bin/env perl
use strict;
use warnings;
use utf8;
...
8
votes
4answers
329 views
Why doesn't this smart match work?
I have an array for which the following test returns true:
1 ~~ @a
And yet, the following test returns false:
@a ~~ 1
I read in Learning Perl that the placement of the values on either side of ...
18
votes
4answers
3k views
How fast is Perl's smart match operator for searching scalar in an array?
I want to repeatedly search for values in array, that does not change during the script.
So far, I have been doing it this way: I put the values in a hash (so I had an array and a hash with ...
1
vote
3answers
269 views
Can I use smart matching, ~~, in Test::More's cmp_ok?
[start EDIT]
Yes, you can. See Michael Carman answer.
The initial question title "Is it possible to use a test like Test::More::cmp_ok but that accepts '~~' (smart match operator) with not a ...
2
votes
2answers
407 views
How do I use Perl's smart matching to match many patterns at once?
I was trying to follow some examples to use smart matching in the following piece of code, but failed (nothing was filtered out).
my $regexes_to_filter_a = ("tmp", "temp", "del")
my @organism_dirs = ...
7
votes
4answers
868 views
What does “ ~~ ” mean in Perl?
In an SO answer daxim states:
@array ~~ $scalar is true when $scalar is in @array
to which draegtun replies:
From 5.10.1+ the order of ~~ is
important. Thus it needs to be $scalar
~~ ...
2
votes
4answers
313 views
Can I replace the binding operator with the smart match operator in Perl?
How can I write this with the smart match operator (~~)?
use 5.010;
my $string = '12 23 34 45 5464 46';
while ( $string =~ /(\d\d)\s/g ) {
say $1;
}
