提取 ClusterName 正则表达式

发布于 2024-12-05 20:24:48 字数 509 浏览 0 评论 0原文

我有一个正则表达式,它将给出计算机名称、集群名称和名称。 OSinfo

Get-QAD 计算机 | OSinfo ? {$.osname -match "2008" - 和 $.computername -match "hv"} | <代码> 选择 @{Name="ComputerName";Expression={$_.computername.replace("$","")}} ,@{Name="ClusterName";Expression={$.computername.replace("$","");$.computername.replace("n[0-9][0-9 ]","")}},@{Name="OperatingSystem";Expression={$_.osname}}

现在我面临的问题是提取集群名称, 例如,如果计算机名称的输出是 ADFCGS1N01$,我希望群集名称看起来像 ADFCGSN1,我想删除 N 之后的所有字符以获取群集名称,

有人可以帮我做同样的事情吗

I have a regular expression which will give the computername, cluster name & OSinfo

Get-QADComputer | ? {$.osname -match "2008" -and $.computername -match "hv"} |
Select @{Name="ComputerName";Expression={$_.computername.replace("$","")}}

,@{Name="ClusterName";Expression={$.computername.replace("$","");$.computername.replace("n[0-9][0-9]","")}},@{Name="OperatingSystem";Expression={$_.osname}}

Now the problem im facing is in extracting the clustername,
for example if output of computer name is ADFCGS1N01$, i wanted the cluster name to look like ADFCGSN1, i wanted to remove all the characters after N to get cluster name,

Can some one please help me with the same

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

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

发布评论

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

评论(1

故事灯 2024-12-12 20:24:48

这能给你正确的值吗?

Get-QADComputer -OSName *2008* -Name *hv* | Select -ExpandProperty Name

根据您的评论,删除名称末尾的 N+2 位数字,包括美元(如果存在):

Get-QADComputer -OSName *2008* -Name *hv* | Foreach-Object {$_.Name -replace 'N\d{2}\$?
}

Does this gives you the correct value?

Get-QADComputer -OSName *2008* -Name *hv* | Select -ExpandProperty Name

Per your comment, remove the N+2 digits from the end of name, including the dollar (if exists):

Get-QADComputer -OSName *2008* -Name *hv* | Foreach-Object {$_.Name -replace 'N\d{2}\$?
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文