in reply to Re^2: Print/Lookup from array element to another array element
in thread Print from array element to another array element
If you want to find one string inside another, just use index
So, something along these lines :-
my $text ='catfood'; # returns -1 if not found say index($text,'food',0);
|
|---|