替换 PHP 的多个实例
我只是想知道如何使用 php 将 - 的多个实例替换为一个,
例如说我
test----test---3
可以做什么来仅用 1 个替换 - 的多个实例,所以谢谢
test-test-3
:)
i'm just wondering how I can replace multiple instances of - with just one using php,
for example say I have
test----test---3
what could I do to replace the multiple instances of - with just 1 so it would be
test-test-3
thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
删除每个重复字符:
删除特定重复字符:
以“丑陋”的方式删除特定重复字符:
所有片段的结果:
Remove every repeating character:
Remove specific repeating character:
Remove specific repeating character the 'ugly' way:
Result for all snippets:
嗯...
你可以让它“更快”地替换:
与:
Uhm...
You can make it "faster" be replacing:
With:
由于 eregi_replace 和 ereg_replace 在 PHP5 中已被弃用,您也可以尝试
因此,如果您运行
它将返回
As eregi_replace and ereg_replace is depreciated in PHP5, you can also try
So if you run
it will return