这个脚本在$s是其他值时都正确,为何偏偏是“[”时出错呢?#! /usr/bin/perl -wuse strict;my $str="ATGCCCGGT[TAACCTCGA[GAGT";my $s = "[";my $i= $str=~ s/$s/$s/g;print "$i\n";