正则表达式搜索 Smarty 模板

发布于 2024-11-25 17:43:45 字数 411 浏览 0 评论 0原文

我有一些字段的名称如下:

home_phone
company_phone
mobile_phone
other_phone_c
personal_phone_c

我有一个 Smarty 变量,用字段值填充输入值:

value="{$fields.{{$prefix}}_phone}"

但带有后缀 _c 的字段不会输出,因为它们与模式不匹配。

有没有办法附加某种正则表达式,以便它查找在 phone 之后或以 _c 结尾的值,例如:

{$fields.{{$prefix}}_phone{regex | ($|_c$)}}"

I have some fields with names such as:

home_phone
company_phone
mobile_phone
other_phone_c
personal_phone_c

And I have a Smarty variable to populate input values with the field values:

value="{$fields.{{$prefix}}_phone}"

But the ones with the suffix _c are not outputting, since they don't match the pattern.

Is there a way to append some kind of regex so that it will look for values that either end after the phone or with _c, something like:

{$fields.{{$prefix}}_phone{regex | ($|_c$)}}"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

巷子口的你 2024-12-02 17:43:45

使用: .*_(?:phone|phone_c)$

它将匹配所需的字符串,以 _phonephone_c 结尾。

Use this: .*_(?:phone|phone_c)$

It will match desired strings, which ends with _phone or phone_c.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文