Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given:

$num = "3";

$num_list = "30 3 42 54";

How can I match the "3" and not the "30"? The number order will always be changing.

I tried:

if ($num_list =~ /(\s?$num\s+/)

Unfortunately it matches the "3" in "30". Not sure how to fix it. I know it's because of the ? means 0 or 1.

Your help is much appreciated!

share|improve this question

5 Answers

Try using word boundaries:

/\b$num\b/

\b will either match start or end of string or any boundary between word character and non-word character (i.e. between [0-9a-zA-Z_] and not [0-9a-zA-Z_]).

share|improve this answer
+1 for simplicity. – Platinum Azure Apr 18 '11 at 18:37
1  
+1, was just about to post this. – CVM Apr 18 '11 at 18:40
While the solution is acceptable here, your explanation is wrong. /!\b!/ will never match despite your claims that it should match !#!. Furthermore, there are many more word characters than those. – ikegami Apr 18 '11 at 18:51
\b is equivalent to (?:(?<!\w)(?=\w)|(?<!\W)(?=\W)) – ikegami Apr 18 '11 at 18:53
@ikegami you're right of course. I adjusted the explanation. – Howard Apr 18 '11 at 18:55

A solution that's great if you're going to check if a lot of numbers are in $num_list:

my $pat = join '|', map quotemeta, split " ", $num_list;
my $re = qr/^(?:$pat)\z/;

$num =~ $re

A solution that's great if you're going to check if a lot of numbers are in $num_list:

my %num_list = map { $_ => 1 } split " ", $num_list;

$num_list{$num}

A solution that doesn't require regexp (great for SQL):

index(" $num_list ", " $num ") >= 0

Simple solutions:

" $num_list " =~ / $num /

$num_list =~ /(?<!\S)$num(?!\S)/

$num_list =~ /\b$num\b/

grep { $_ == $num } split " ", $num_list
share|improve this answer

How about not using regexps at all?

 $num = 3;
 @num_list = qw[30 3 42 54];
 if (grep { $_ == $num } @num_list) {
    ...
 }
share|improve this answer

From what I know, Perl uses the same regex as preg_match in PHP
Then you can try the following:

/(?<=^|\s)($num)(?=$|\s)/

I should have a start or whitespace before the 3, and an end or whitespace afterwards

share|improve this answer
/(?<=^|\s)($num)(?=$|\s)/ is simpler as /(?<!\S)($num)(?!\S)/ – ikegami Apr 18 '11 at 18:47

Maybe something like:

$num_list = "30 3 42 54";
$num = "3";
@arr = explode(" ", $num_list);

if (scalar grep {$_ eq $num} @num_list) {
    print "Zuko!\n";
}
share|improve this answer
1  
explode(" ", $num_list) exists as split(" ", $num_list) – ikegami Apr 18 '11 at 18:58
Yes :D my fault ;) – ololo Apr 20 '11 at 11:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.