使用 Freemarker 从内容中减去 img 标签

发布于 2024-11-17 05:39:30 字数 172 浏览 3 评论 0原文

我今天的问题是下一个: 我必须从某些内容中减去图像标签“< img src='path />'” 得到它后我必须减去 src 属性并将其保存在变量中,然后 用 php 代码替换它

这个程序在 php 中很容易,但在 freemarker 中却很奇怪.. 请有人知道如何做到这一点

谢谢!

My problem today is the next :
I have to Subtract an image tag "< img src='path />'" from some content
and after get it i have to Subtract the src attribute and save it in a variable, then
replace it with a php code

This rutine is easy in php but in freemarker is very weird ..
please someone knows hor to do this

thank you !!

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

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

发布评论

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

评论(1

他夏了夏天 2024-11-24 05:39:30

内置的 ?matches 允许您对给定字符串进行正则表达式搜索。它也返回子字符串匹配的列表,因此您应该能够获取 SRC 属性,将其放入变量中,然后围绕该属性构建 PHP 代码。

有关如何使用内置功能的详细信息,请参阅 Freemarker 手册:

http://freemarker。 sourceforge.net/docs/ref_builtins_string.html#ref_builtin_matches

The ?matches built-in will allow you to do regular-expression searches on a given string. It returns a list of substring matches too, so you should be able to get the SRC attribute, put it into a variable, and then build up your PHP code around that.

See the Freemarker manual for details on how to use the built-in:

http://freemarker.sourceforge.net/docs/ref_builtins_string.html#ref_builtin_matches

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