Ross McQueen schreef:
> I have an array that contains words with dollar signs.
>
> For example: @names = AS$FD, FD$AS.
>
> I can grep this array successfully if I backslash the '$' sign:
> my @results = grep /AS\$FD/,@names
>
> Hoever, I want to search @names with each of the names from another
>
Hello All:
I have an array that contains words with dollar signs.
For example: @names = AS$FD, FD$AS.
I can grep this array successfully if I backslash the '$' sign:
my @results = grep /AS\$FD/,@names
Hoever, I want to search @names with each of the names from another array
where the dollar si