将除一个单词之外的所有字符替换为空格

发布于 2024-11-30 22:26:19 字数 163 浏览 0 评论 0原文

$string = 'onetwothreefourfive';

如何将其变成?

$string = '      three        ';

当我的输入是时,

$string = 'onetwothreefourfive';

How can I turn this into

$string = '      three        ';

When my input is three?

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

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

发布评论

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

评论(3

痴情换悲伤 2024-12-07 22:26:19

无需使用粗略的字符串操作,正则表达式来救援

$string = preg_replace('/(three\K)?./s', ' ', $string);

有关使用内容的详细信息,如果有任何不清楚的地方,请查看 PCRE 模式语法 章节PHP 手册。

No need to use crude string manipulation, regex to the rescue!

$string = preg_replace('/(three\K)?./s', ' ', $string);

For details on what is used, if anything is unclear, check out the PCRE Pattern Syntax chapter of the PHP manual.

最美的太阳 2024-12-07 22:26:19
$first_chunk = str_repeat(' ', strpos($string, 'three'));
$last_chunk = str_repeat(' ', strlen($string) - strpos($string, 'three') - strlen($string));

$string = $first_chunk . 'three' . $last_chunk;

未经测试,不处理大海捞针,YMMV,yada yada yada。

$first_chunk = str_repeat(' ', strpos($string, 'three'));
$last_chunk = str_repeat(' ', strlen($string) - strpos($string, 'three') - strlen($string));

$string = $first_chunk . 'three' . $last_chunk;

not tested, doesn't handle multiple needles in the haystack, YMMV, yada yada yada.

深陷 2024-12-07 22:26:19

无需使用昂贵和/或复杂的正则表达式:

function replace_space($str, $keep, $hold) {
   $str = explode($keep, $str);
   foreach ($str as &$piece) {
      $piece = str_repeat($hold, strlen($piece));
   }
   return implode($keep, $str);
}

echo replace_space('onetwothreefourfivethreefour', 'three', ' ');

经过测试并可与大海捞针中的多个针一起使用。

No need to use expensive and/or complicated regex:

function replace_space($str, $keep, $hold) {
   $str = explode($keep, $str);
   foreach ($str as &$piece) {
      $piece = str_repeat($hold, strlen($piece));
   }
   return implode($keep, $str);
}

echo replace_space('onetwothreefourfivethreefour', 'three', ' ');

Tested and works with multiple needles in the haystack.

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