提取 ClusterName 正则表达式
我有一个正则表达式,它将给出计算机名称、集群名称和名称。 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这能给你正确的值吗?
根据您的评论,删除名称末尾的 N+2 位数字,包括美元(如果存在):
Does this gives you the correct value?
Per your comment, remove the N+2 digits from the end of name, including the dollar (if exists):