在 PHP 中将字符串从一个点剪切到另一个点

发布于 2024-10-02 22:56:17 字数 288 浏览 5 评论 0原文

我想制作一个脚本,他的动作是将绳子从一个点切割到另一个点。

例如:

<div id="box" style="font-size:bold;height:30px;width:100px;border: 1px solid black">xx</div>

我希望脚本能够剪切所有样式。,它会是这样的:

<div id="box">xx </div>

我该怎么做?

I want to make script that his action is to cut string from one point to another point.

for example:

<div id="box" style="font-size:bold;height:30px;width:100px;border: 1px solid black">xx</div>

i want that the script will cut all the style., and it will be something like:

<div id="box">xx </div>

how can I do it ?

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

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

发布评论

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

评论(1

岛徒 2024-10-09 22:56:17

如果您只想替换 style 属性,您可以这样做:

$str = '<div id="box" style="font-size:bold;height:30px;width:100px;border: 1px solid black">xx</div>';
$str = preg_replace('/ style=\"[^\"]*\"/', '', $str);

If all you want to do is replace the style attribute you can do this:

$str = '<div id="box" style="font-size:bold;height:30px;width:100px;border: 1px solid black">xx</div>';
$str = preg_replace('/ style=\"[^\"]*\"/', '', $str);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文