php 查找字符之间的空格

发布于 2024-12-31 21:51:45 字数 318 浏览 0 评论 0原文

如何修剪同一字符串中两个特定字符之间的空格?即我只想关闭第一个标签和下一个单词的开头之间的空间...

我想把这个:

<code>

                                testing testing 123
test

变成这个:

<code>testing testing 123

test

将永远在那里,所以也许我可以用它作为某种锚点?

谢谢

How can I trim white space between two specific characters in the same string? i.e. I just want to close the space between the first tag there and the start of the next word...

I want to turn this:

<code>

                                testing testing 123
test

into this:

<code>testing testing 123

test

The <code> will always be there, so perhaps I could use that as some sort of anchor point?

Thanks

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

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

发布评论

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

评论(3

樱&纷飞 2025-01-07 21:51:45
$trimmed = trim(substr($in, 6));

这将删除 之后的空格直到第一个非空格。

$trimmed = trim(substr($in, 6));

that will remove the whitespace after <code> up to the first non-whitespace.

掐死时间 2025-01-07 21:51:45

假设 始终存在于字符串的开头,您可以使用:

$str = preg_replace( '/^<code>\s+/', '<code>', $str )

上面的正则表达式将匹配 ;标记在行的开头(^ 指示符)并删除其后面的所有空白字符(\s+)模式。

Assuming <code> always exists at the beginning of your string, you can use:

$str = preg_replace( '/^<code>\s+/', '<code>', $str )

The regular expression above will match a <code> tag at the beginning of a line (the ^ indicator) and remove all whitespace characters following it (the \s+) pattern.

℉服软 2025-01-07 21:51:45

使用正则表达式,如下所示:

$trimmed = preg_replace('/(<[^>]*>)\s*/', '\1', $input_string)

这适用于任何 html 标签;)

Use RegExp, something like this:

$trimmed = preg_replace('/(<[^>]*>)\s*/', '\1', $input_string)

This will work on ANY html-tag ;)

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