在 Powershell 中比较数组
问题,我希望能够将对象列表与字符串数组进行比较。或多或少,就像使用 Sql 'IN' 运算符(其中 TableName IN('Table1','Table2','Table3')。
具体来说,我正在使用 SMO 表列表,并且我只想返回按名称包含在表名称数组中的表,
例如: $tablelist = @("地址","电话", "电子邮件")
sl "SQLSERVER:SQL\SERVERNAME\DEFAULT\DATABASES\DATABASEName\TABLES"
$tables = gci |其中{$_.Name -->如果可能的话,我在这里用 $tablelist 做什么?}
TIA! 乙
Question, I'd like to be able to compare a list of objects against an array of strings. More or less, like using the Sql 'IN' operator (where TableName IN('Table1','Table2','Table3').
Specifically, I'm using the SMO table list, and I'd like to return only the tables by name that are contained within an array of table names.
For example:
$tablelist = @("Address","Phone", "Email")
sl "SQLSERVER:SQL\SERVERNAME\DEFAULT\DATABASES\DATABASEName\TABLES"
$tables = gci | where{$_.Name --> wtf do I do here with the $tablelist, if this is possible?}
TIA!
B
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
更新:
好像是在v3.0中添加了
-in
。以为它一直都在那里!因此,在 v2.0 中,您必须使用
-contains
或-eq
:或者
您可以使用多个运算符:
-in
运算符类似于您在 SQL 中使用的运算符。与数组一起使用时,-eq
查看该元素是否存在于数组中,如果存在则返回该元素。所以你可以像if($a -eq 1)
这样使用它所以在你的情况下,你可以这样做:
Update:
Seems like
-in
is added in v3.0. Assumed that it was there all along!So in v2.0, you have to use
-contains
or-eq
:or
There are multiple operators that you can use:
The
-in
operator is similar to what you are used to in SQL. When used with array,-eq
sees if the element is present in the array and returns the element if so. So you can use it likeif($a -eq 1)
So in your case, you can do something like:
我认为
-contains
比较运算符是您的最佳选择。The
-contains
comparison operator is your best choice for this I think.斯科特,
听起来你想要解决这个问题的方法是使用 -Contains。
这是一个使用 SQLPSX 的快速示例
Scott,
It sounds like the way you want to go about this is by using -Contains.
Here's a quick example using SQLPSX