在Powershell 6中传递System.Text.RegularExpressions.Regex作为函数参数



你好,Powershell专家,

我想写一个Powershell函数,它将System.Text.RegularExpressions.Regex作为参数。我的函数头是这样的:

function Foo {
Param([System.Text.RegularExpressions.Regex] $myRegex)
# function body
}

我试着这样调用Foo

$MY_REGEX = new-object System.Text.RegularExpressions.Regex('<regex_body>')
Foo($MY_REGEX)

我收到一个错误,上面写着Cannot convert the "System.Object[]" value of type "System.Object[]" to type "System.Text.RegularExpressions.Regex".

我想知道为什么会这样,因为我用System.Text.RegularExpressions.Regex类型明确定义了regex。所以我在我的对象上做了.GetType((,得到了:

BaseType                   : System.Object
UnderlyingSystemType       : System.Text.RegularExpressions.Regex
FullName                   : System.Text.RegularExpressions.Regex

所以现在我很困惑为什么它抱怨在底层类型匹配时选角。。。

有人能指出我做错了什么吗?

在命令行中,以下内容对我有用,并提供了一些相关的输出。你能提供一个完整的例子吗。

function foo { param ( [System.Text.RegularExpressions.Regex] $myRegex ) ; process { Write-Information -MessageData $myRegex -InformationAction Continue ; $myRegEx.GetType() | fl * } }
foo a.
$r = New-Object System.Text.RegularExpressions.RegEx("a.")
foo -MyRegex $r

并发射

a.
FullName                   : System.Text.RegularExpressions.Regex

请尝试使用最后显示的语法。

相关内容

  • 没有找到相关文章

最新更新