php 查找字符之间的空格
如何修剪同一字符串中两个特定字符之间的空格?即我只想关闭第一个标签和下一个单词的开头之间的空间...
我想把这个:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将删除
之后的空格直到第一个非空格。
that will remove the whitespace after
<code>
up to the first non-whitespace.假设
始终存在于字符串的开头,您可以使用:
上面的正则表达式将匹配
;标记在行的开头(^ 指示符)并删除其后面的所有空白字符(\s+)模式。
Assuming
<code>
always exists at the beginning of your string, you can use: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.
使用正则表达式,如下所示:
这适用于任何 html 标签;)
Use RegExp, something like this:
This will work on ANY html-tag ;)