ansible.builtin.regex 测试 – 字符串是否从开头匹配正则表达式
注意
此测试插件是 ansible-core
的一部分,包含在所有 Ansible 安装中。在大多数情况下,您可以使用短插件名称 regex
。但是,我们建议您使用完全限定集合名称 (FQCN) ansible.builtin.regex
,以便轻松链接到插件文档,并避免与其他可能具有相同测试插件名称的集合冲突。
概要
使用 Python 的 match 或 search 函数比较字符串和正则表达式。
输入
这描述了测试的输入,即 is ansible.builtin.regex
或 is not ansible.builtin.regex
之前的值。
参数 |
注释 |
---|---|
要匹配的字符串。 |
关键字参数
这描述了测试的关键字参数。这些是以下示例中 key1=value1
,key2=value2
等值:input is ansible.builtin.regex(key1=value1, key2=value2, ...)
和 input is not ansible.builtin.regex(key1=value1, key2=value2, ...)
参数 |
注释 |
---|---|
使用不区分大小写的匹配。 选项
|
|
决定使用哪个函数进行匹配。 选项
|
|
匹配字符串中的多行。 选项
|
|
要匹配的正则表达式。 |
示例
url: "https://example.com/users/foo/resources/bar"
foundmatch: url is regex("example\.com/\w+/foo")
返回值
键 |
描述 |
---|---|
如果存在匹配项,则返回 返回: 成功 |