perl - 如何获取一行的一部分

发布于 2024-12-15 12:02:46 字数 402 浏览 0 评论 0原文

我想使用 perl 获取部分线路 2行的示例:

/Tests/CpuStrmRd_MemAccSmB_WrBgDis_RdBgDis_WrAlcDis__Ddr64_2to1_DlbEn_PrfEn_1_StrmRd/
/Tests/puStrmWr_MemAccSmB_WrBgDis_RdBgRnd_WrAlcEN__Ddr64_2to1_DlbEn_PrfEn_81_StrmWr/

我想要的行的部分(每行)是:(

CpuStrmRd_MemAccSmB_WrBgDis_RdBgDis_WrAlcDis

位于 /Tests/__Ddr 之间)

感谢您的帮助

I want to take a part of line using perl
example for 2 lines:

/Tests/CpuStrmRd_MemAccSmB_WrBgDis_RdBgDis_WrAlcDis__Ddr64_2to1_DlbEn_PrfEn_1_StrmRd/
/Tests/puStrmWr_MemAccSmB_WrBgDis_RdBgRnd_WrAlcEN__Ddr64_2to1_DlbEn_PrfEn_81_StrmWr/

and the part of the line (for each line) I want to take is:

CpuStrmRd_MemAccSmB_WrBgDis_RdBgDis_WrAlcDis

(which is between /Tests/ and __Ddr )

Thanks for any help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱要勇敢去追 2024-12-22 12:02:46

如果它在 /Tests/ 和 __Ddr 之间,听起来

my ($match) = ($line =~ m{/Tests/(.+?)__Ddr});

这确实会满足您的要求; 。匹配任何字符。

If it's between /Tests/ and __Ddr, it sounds like

my ($match) = ($line =~ m{/Tests/(.+?)__Ddr});

That will do literally what you are asking for; . matches any character.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文