gpt4 book ai didi

c# - 确保在字符串中出现任何特定字符后都存在空格

转载 作者:行者123 更新时间:2023-11-30 13:42:46 25 4
gpt4 key购买 nike

如果有人能帮我解决这个...

我有一个名为文本的字符串。我需要确保在每次出现特定字符 "之后都有一个空格。如果没有空格,那么我需要插入一个。

我不确定在 C# 中实现此目的的最佳方法,我认为正则表达式可能是可行的方法,但我对正则表达式的了解不足...

如果有人能提供帮助,我们将不胜感激。

最佳答案

// rule: all 'a's must be followed by space.
// 'a's that are already followed by space must
// remain the same.
String text = "banana is a fruit";
text = Regex.Replace(text, @"a(?!\s)", x=>x + " ");
// at this point, text contains: ba na na is a fruit

正则表达式 a(?!\s) 搜索后面没有空格的“a”。 lambda 表达式 x=>x + ""告诉替换函数替换任何出现的 'a' without a following whitespace for 'a' with a whitespace

关于c# - 确保在字符串中出现任何特定字符后都存在空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2033072/

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