gpt4 book ai didi

linux - perl 中文件的模式匹配

转载 作者:太空宇宙 更新时间:2023-11-04 05:40:32 26 4
gpt4 key购买 nike

我想在perl中使用grep,但我在这里感到困惑。我想做的是,有一个文件,例如 -

this is abctemp1
this is temp2
this is temp3x
this is abctemp1

现在,我想使用模式“temp”从该文件中提取唯一的单词,即“abctemp1、temp2、temp3x”,并将其存储在一个数组中。如何做到这一点?

最佳答案

use strict; use warnings;

my (@array, %seen);
/(\w*temp\w*)/ && !$seen{$1}++ && push @array, $1 while <DATA>;
print "$_\n" for @array;

__DATA__
this is abctemp1
this is temp2
this is temp3x
this is abctemp1

关于linux - perl 中文件的模式匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17565517/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com