替换 PHP 的多个实例

发布于 2024-11-02 03:00:55 字数 178 浏览 2 评论 0原文

我只是想知道如何使用 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 技术交流群。

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

发布评论

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

评论(3

攒一口袋星星 2024-11-09 03:00:55

删除每个重复字符:

$string = 'test----test---3';
echo preg_replace('{(.)\1+}','$1',$string);

删除特定重复字符:

$string = 'test----test---3';
echo eregi_replace("-{2,}", "-", $string);

以“丑陋”的方式删除特定重复字符:

$string = 'test----test---3';
echo implode('-',array_filter(explode('-',$string)));

所有片段的结果:

test-test-3

Remove every repeating character:

$string = 'test----test---3';
echo preg_replace('{(.)\1+}','$1',$string);

Remove specific repeating character:

$string = 'test----test---3';
echo eregi_replace("-{2,}", "-", $string);

Remove specific repeating character the 'ugly' way:

$string = 'test----test---3';
echo implode('-',array_filter(explode('-',$string)));

Result for all snippets:

test-test-3
悲凉≈ 2024-11-09 03:00:55

嗯...

function replaceDashes($str){
    while(strpos($str,'--')!==false)
        $str=str_replace('--','-',$str);
    return $str;
}

你可以让它“更快”地替换:

        $str=str_replace('--','-',$str);

与:

        $str=str_replace(array('----','---','--'),'-',$str);

Uhm...

function replaceDashes($str){
    while(strpos($str,'--')!==false)
        $str=str_replace('--','-',$str);
    return $str;
}

You can make it "faster" be replacing:

        $str=str_replace('--','-',$str);

With:

        $str=str_replace(array('----','---','--'),'-',$str);
梦明 2024-11-09 03:00:55

由于 eregi_replace 和 ereg_replace 在 PHP5 中已被弃用,您也可以尝试

preg_replace("/-{2,}/", "-", $string);

因此,如果您运行

preg_replace("/-{2,}/", "-", "--a--b---c----")

它将返回

-abc-

As eregi_replace and ereg_replace is depreciated in PHP5, you can also try

preg_replace("/-{2,}/", "-", $string);

So if you run

preg_replace("/-{2,}/", "-", "--a--b---c----")

it will return

-a-b-c-

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