gpt4 book ai didi

regex - 在Powershell正则表达式中匹配多个条件

转载 作者:行者123 更新时间:2023-12-02 23:19:26 24 4
gpt4 key购买 nike

在powershell中,我需要遍历并返回以::开头的所有唯一的第一个元素的列表(在第一个puppet_之前)。 puppet_customerpuppet_edcs。如果可能,请从puppet_列表中排除一些内容,例如puppet_enterprisepuppet_metrics_collectorpuppet_agent

chocolatey
pe_install::install
pe_postgresql::lib::devel
profile::agent_config
puppet_agent::install::remove_packages
puppet_customer::customer_shared::alerts
puppet_customer::email_shared::email
puppet_edcs::claims::grt_api
puppet_enterprise::certs::puppetdb_whitelist
puppet_ets::windows::defaults::audit_policy
puppet_metrics_collector
puppet_policyservicing::owbinet::file_cluster
puppet_printserver::print
puppet_product::avrt::avrt
puppet_quoting::aqw_dca::aqw
puppet_testing::ourtestfile
puppet_webpresence::lifelanes_webapp
role::customer::customer_shared

这是我希望它返回的列表
puppet_customer
puppet_edcs
puppet_ets
puppet_policyservicing
puppet_printserver
puppet_product
puppet_quoting
puppet_webpresence
$invoke.name | Select-String -Pattern ^puppet_.*\:\:'(\w+)'\:\:'(\w+)'$ | 
foreach {$_.Matches.Groups[1].Value} | Sort-Object | Unique`

最佳答案

您可以使用

'^puppet_(?!enterprise|metrics_collector|agent|testing)\w+'

参见 regex demo。它会在不立即跟在 puppet_enterprisemetrics_collectoragent之后的行的开头匹配 testing,然后将使用1个或更多单词chars:

enter image description here

请注意,您需要访问整个匹配值,而不是捕获组值,在这种情况下为 $_.Matches.Value

如果您只想避免匹配,则在“stop”字词后面加上 ::时,请调整模式,例如
^puppet_(?!(?:enterprise|metrics_collector|agent|testing)::)\w+
^^^ ^^^

看到这个 regex demo

关于regex - 在Powershell正则表达式中匹配多个条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55874016/

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