gpt4 book ai didi

c# - 将单个或多个空格替换为 %

转载 作者:太空狗 更新时间:2023-10-30 00:45:54 25 4
gpt4 key购买 nike

我有像 "First Last Name" 这样的字符串我想将空格替换为 % like

"First%Last%Name"

如何将连续空格替换为单个%?

最佳答案

您可以使用正则表达式来完成:

str = Regex.Replace(str, " +", "%");

关于c# - 将单个或多个空格替换为 %,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4570158/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com