如何在字符串中的特定位置插入字符? [重复]

问题描述 投票:-1回答:1
$str="Hello From Other Side "; $add = rand(20,50);
如何在特定位置的字符串中的每个字符之后插入数字或字符作为(25)

结果

He25llo Fr25om Ot26her S25ide
谢谢
php arrays string position add
1个回答
0
投票
您可以使用substr()功能!

如果您要在位置2的25内插入$str="Hello From Other Side ";

你可以做

$pos=2; $new_string= substr($str, 0, $pos). "25" . substr($str, $pos);

结果将是:

"He25llo From Other Side "

© www.soinside.com 2019 - 2024. All rights reserved.