我正在尝试使用注释列表来标记术语。我特别想实现的是,如果 Perl 正则表达式从句子中识别出一个术语,它应该用标签标记这个术语。
例如:
This drug has adverse effect on Lymphocytes, Lymphnodes, Lymph and pre-lymphocytes.
我的列表中有 Lymph 这个词,我正在尝试以下脚本。
open IN, "clean_cells.txt" or die "import file absent";
@array=<IN>;
foreach $words(@array)
{
@cells=split/\t/,$words;
$value=$cells[0];
$replace=$cells[1];
foreach my $fp (glob("$Directory/*.txt"))
{
@id=split('/',$fp);
$id[1]=~s/.txt//ig;
$Pub=$id[1];
open FILE, "<",$fp or die "Can't open $fp: $!";
open OUT, ">C:\\Users\\Desktop\\TM\\Files\\$Pub" or die "Check output status";
while(<FILE>)
{
chomp $_;
$line=$_;
s/\b[\w\-]*$value[\w\-]*\b/<$replace>$&<\\$replace>/gi;
# $string[$i]=$line;
# while(($string[$i]=~m/\Q$value\E/i)|| ($string[$i]=~m/\Q$value(\w+)\E/i)||($string[$i]=~m/\Q(\w+)$value\E/i))
# # if ($string[$i] =~ m/\b\w*$value\w*\b/i)
# {
# $value=~s/$value/<$replace>$value<\$replace>/i;
# }
print OUT "$line\n";
}
last;
}
last;
}
我希望最后一句话应该是这样的:
This drug has adverse effect on tag Lymphocytes tag, tag Lymphnodes tag, tag Lymph tag and tag pre-lymphocytes tag.
tag:代表上面脚本中的$replace。
该程序标记基本词 lymoh 而不是整个术语 Lymphocytes, pre-lymphocytes。