0

我有一个用于搜索字符串的powershell脚本,当我直接从powershell命令提示符运行它时,该脚本可以工作,但是当我将它放入热模板的用户数据时无法运行:脚本是:

$regex = [regex]"(?<=\>)(\d+)(.*)SNAPSHOT(?=\/\<)"
$allsnapshot=$regex.Matches($testcode1) | % { $_.matches } | % { $_.value }  |get-unique |sort -descending

错误是:

execute_user_data_script C:\Program Files (x86)\Cloudbase Solutions\Cloudbase-Init\Python27\lib\site-packages\cloudbaseinit\plugins\windows\userdatautils.py:58
2015-04-25 12:11:45.140 1796 DEBUG cloudbaseinit.plugins.windows.userdatautils [-] User_data stderr:
The term '?<=\>' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.

At C:\Users\cloudbase-init\appdata\local\temp\835603b2-b3dc-4a9b-a156-029c75322

a8f.ps1:26 char:24

+ $regex = [regex]"(?<=\> <<<< )(\d+)(.*)SNAPSHOT(?=\/\<)"

    + CategoryInfo          : ObjectNotFound: (?<=\>:String) [], CommandNotFou 

   ndException

    + FullyQualifiedErrorId : CommandNotFoundException

我认为这是一个解析问题。但不知道如何解决。那么如何避免 Python 解析它呢?

我为此挣扎了好几天。我很感激任何建议。

4

1 回答 1

0

Python 可能不允许您使用 PowerShell v3 对象转换,这是您在隐式键入变量时所做的事情,例如 [xml](Get-Content .\SomeXml.xml) 或在这种情况下,您的正则表达式.

我建议尝试久经考验的真正 PowerShell v1 及更高版本的对象转换语法,如下所示:

$regex = New-Object -TypeName Regex -ArgumentList "(?<=\>)(\d+)(.*)SNAPSHOT(?=\/\<)" 

当我将我的工具从较新版本的 PowerShell 和 WMF 移植到较旧版本时,我经常遇到与您一样的问题。错误可能难以辨认!

如果这没有帮助,请告诉我,我们可以尝试一起制定解决方案。


尝试使用here-string,这是一个示例:

"""This is a multiline string
 with more than one line
 in the source code."""

如此处所示:如何在 python 中编写字符串文字而不必转义它们?.

于 2015-04-25T14:15:39.907 回答