第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

替換作為逗號(hào)分隔列表一部分的字符串中的值。 PHP

替換作為逗號(hào)分隔列表一部分的字符串中的值。 PHP

PHP
揚(yáng)帆大魚 2023-12-15 10:42:00
我正在嘗試替換逗號(hào)分隔列表中的名稱。但是,無法弄清楚如何匹配確切的名稱,不區(qū)分大小寫,并且如果不完全匹配則不捕獲這是我到目前為止所得到的。$search  = "My name is Christina and this is another example";$AllNames = "Lola,Chris,Monic";$search = str_ireplace(array_map("trim", explode(",", strtolower($AllNames))), '****', $search);所以在這種情況下 Christina 的名字將被標(biāo)記為 ****,盡管我只是在尋找 Chris。 知道我如何才能實(shí)現(xiàn)這一目標(biāo)。我找到了一些示例,說明如何將逗號(hào)分隔的列表分解為數(shù)組,然后遍歷每個(gè)項(xiàng)目,但也許有一個(gè)更簡單的解決方案。
查看完整描述

1 回答

?
一只名叫tom的貓

TA貢獻(xiàn)1906條經(jīng)驗(yàn) 獲得超3個(gè)贊

嘗試使用值中的 \b 字邊界以及 /i 不敏感修飾符和 preg_replace:


$search  = "My name is Christina and this is another example, my friends are Lola and Monica and Monic and Chris. As lowercase: lola, christina, monic, monica, chris.";

$AllNames = ["/Lola/i", "/Chris\b/i", "/Monic\b/i"];

$search = preg_replace($AllNames, '****', $search);

echo $search;

輸出:


My name is Christina and this is another example, my friends are **** and Monica and **** and ****. As lowercase: ****, christina, ****, monica, ****.

請(qǐng)注意,我沒有在 Lola 中使用單詞邊界,但如果需要,可以輕松添加。


查看完整回答
反對(duì) 回復(fù) 2023-12-15
  • 1 回答
  • 0 關(guān)注
  • 155 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)