<tfoot id='bEsdg'></tfoot>

      <i id='bEsdg'><tr id='bEsdg'><dt id='bEsdg'><q id='bEsdg'><span id='bEsdg'><b id='bEsdg'><form id='bEsdg'><ins id='bEsdg'></ins><ul id='bEsdg'></ul><sub id='bEsdg'></sub></form><legend id='bEsdg'></legend><bdo id='bEsdg'><pre id='bEsdg'><center id='bEsdg'></center></pre></bdo></b><th id='bEsdg'></th></span></q></dt></tr></i><div id='bEsdg'><tfoot id='bEsdg'></tfoot><dl id='bEsdg'><fieldset id='bEsdg'></fieldset></dl></div>
        <bdo id='bEsdg'></bdo><ul id='bEsdg'></ul>

      1. <legend id='bEsdg'><style id='bEsdg'><dir id='bEsdg'><q id='bEsdg'></q></dir></style></legend>

        <small id='bEsdg'></small><noframes id='bEsdg'>

      2. PHP 字符串替换匹配整个单词

        时间:2023-05-21

        <small id='W18iF'></small><noframes id='W18iF'>

          <i id='W18iF'><tr id='W18iF'><dt id='W18iF'><q id='W18iF'><span id='W18iF'><b id='W18iF'><form id='W18iF'><ins id='W18iF'></ins><ul id='W18iF'></ul><sub id='W18iF'></sub></form><legend id='W18iF'></legend><bdo id='W18iF'><pre id='W18iF'><center id='W18iF'></center></pre></bdo></b><th id='W18iF'></th></span></q></dt></tr></i><div id='W18iF'><tfoot id='W18iF'></tfoot><dl id='W18iF'><fieldset id='W18iF'></fieldset></dl></div>
              <tbody id='W18iF'></tbody>

              <legend id='W18iF'><style id='W18iF'><dir id='W18iF'><q id='W18iF'></q></dir></style></legend>

              • <bdo id='W18iF'></bdo><ul id='W18iF'></ul>
                  <tfoot id='W18iF'></tfoot>
                1. 本文介绍了PHP 字符串替换匹配整个单词的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我想用 php 替换完整的单词

                  I would like to replace just complete words using php

                  示例:如果我有

                  $text = "Hello hellol hello, Helloz";
                  

                  我用

                  $newtext = str_replace("Hello",'NEW',$text);
                  

                  新文本应该看起来像

                  新的 hello1 你好,Helloz

                  NEW hello1 hello, Helloz

                  PHP 返回

                  NEW hello1 你好,NEWz

                  NEW hello1 hello, NEWz

                  谢谢.

                  推荐答案

                  您想使用正则表达式. 匹配单词边界.

                  You want to use regular expressions. The  matches a word boundary.

                  $text = preg_replace('/Hello/', 'NEW', $text);
                  

                  <小时>

                  如果 $text 包含 UTF-8 文本,则必须添加 Unicode 修饰符u",以便非拉丁字符不会被误解为单词边界:


                  If $text contains UTF-8 text, you'll have to add the Unicode modifier "u", so that non-latin characters are not misinterpreted as word boundaries:

                  $text = preg_replace('/Hello/u', 'NEW', $text);
                  

                  这篇关于PHP 字符串替换匹配整个单词的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:正确分离 PHP 中的逻辑/样式 下一篇:如何以最聪明的方式替换 PHP 中不同的换行样式

                  相关文章

                  最新文章

                  • <bdo id='PCrp5'></bdo><ul id='PCrp5'></ul>
                2. <i id='PCrp5'><tr id='PCrp5'><dt id='PCrp5'><q id='PCrp5'><span id='PCrp5'><b id='PCrp5'><form id='PCrp5'><ins id='PCrp5'></ins><ul id='PCrp5'></ul><sub id='PCrp5'></sub></form><legend id='PCrp5'></legend><bdo id='PCrp5'><pre id='PCrp5'><center id='PCrp5'></center></pre></bdo></b><th id='PCrp5'></th></span></q></dt></tr></i><div id='PCrp5'><tfoot id='PCrp5'></tfoot><dl id='PCrp5'><fieldset id='PCrp5'></fieldset></dl></div>

                  1. <tfoot id='PCrp5'></tfoot>

                      <small id='PCrp5'></small><noframes id='PCrp5'>

                      <legend id='PCrp5'><style id='PCrp5'><dir id='PCrp5'><q id='PCrp5'></q></dir></style></legend>