如何自动为纯文本数据添加标签?

发布于 2024-09-25 09:10:10 字数 102 浏览 3 评论 0原文

我正在制作一个食谱数据库,但我想要一个用于成分和操作(即搅拌)的表格,当用户提交纯文本说明时,我希望它用 div 标签包装这些关键字。

有没有类似的应用程序可以做类似的事情?

i'm making a recipe database, but i want a table for ingredients and for actions (i.e whisk) and when a user submits the plain text instructions i want it to wrap those keywords with div tags.

is there a similar app that does something like that?

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

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

发布评论

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

评论(1

琴流音 2024-10-02 09:10:10

像这样的事情应该可以解决问题:

$text = 'this is a cooking test';

$keywords = array('cooking' => array('before' => '<span class="cooking">', 'after' => '</span>'));

foreach($keywords as $key => $value) {
    $text = str_replace($key, $value['before'].$key.$value['after'], $text);
}
print $text;

这会产生:

this is a <span class="cooking">cooking</span> test

Something like this should do the trick:

$text = 'this is a cooking test';

$keywords = array('cooking' => array('before' => '<span class="cooking">', 'after' => '</span>'));

foreach($keywords as $key => $value) {
    $text = str_replace($key, $value['before'].$key.$value['after'], $text);
}
print $text;

this would produce:

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