我正在尝试通过 mysql 在我的 perl 脚本中创建搜索功能
在 mysql 数据库中,有些名称是name.file.new.txt
,有些名称是name file new txt
当我搜索时name file
只显示结果name file new txt
而不显示name.file.new.txt
我正在尝试如果我的搜索name file
结果会显示name.file.new.txt
并且name file new txt
我的 mysql perl 函数是
my $filter = "AND (file_name LIKE '%$f->{k}%' OR file_descr LIKE '%$f->{k}%')" if $f->{k}=~/^[^\"\'\;\\]{3,}$/;
谢谢你