Hey,
I have an array of strings:
my @strings = ("abcZZZabc","defHOMEdef","hijYYYhij");
I want to ensure that only strings that don't contain HOME in the middle will be pushed into a new array. However I am having problems trying to create a single regular expression which will complete the task.
I can't use [] character classes because [^HOME] would match the letters of the word in any sort of order etc.
I thought I would be able to use parenthesis to replace the sqaure brackets, but this didn't work.
Here is my attempt:
I am wondering if anybody could help me produce a working regular expression similar to /abc(^HOME)abc/.
Thanks alot,
Chris
I have an array of strings:
my @strings = ("abcZZZabc","defHOMEdef","hijYYYhij");
I want to ensure that only strings that don't contain HOME in the middle will be pushed into a new array. However I am having problems trying to create a single regular expression which will complete the task.
I can't use [] character classes because [^HOME] would match the letters of the word in any sort of order etc.
I thought I would be able to use parenthesis to replace the sqaure brackets, but this didn't work.
Here is my attempt:
Code:
my @strings = ("abcZZZabc","abcHOMEabc","abcYYYabc");
foreach (@strings) {
if ($_ =~ /abc(^HOME)abc/) {
print "$_ = Match (Does not contain HOME)\n";
}
else {
print "$_ = No Match (Contains HOME)\n";
}
}
I am wondering if anybody could help me produce a working regular expression similar to /abc(^HOME)abc/.
Thanks alot,
Chris