in reply to Re^2: Comparing strings with special characters
in thread Comparing strings with special characters
A perlish way of checking the presence of a string in an array isgrep -A2 -f candseq_data_file rawseq_data_file
@is_member = grep { $_ =~ /$candseq/} @rawseq;
|
|---|