gpt4 book ai didi

c# - 在每个/使用 Humanizer 或 Regex 周围添加空间

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

我有一个类似下面的字符串:

var text = @"Some text/othertext/ yet more text /last of the text";

我想标准化每个斜杠周围的空格,使其匹配以下内容:

var text = @"Some text / othertext / yet more text / last of the text";

即每个斜线前一个空格,斜线后一个空格。我如何使用 Humanizer 或使用 单个 正则表达式来做到这一点? Humanizer 是首选解决方案。

我可以使用以下正则表达式来做到这一点:

var regexLeft = new Regex(@"\S/");    // \S matches non-whitespace
var regexRight = new Regex(@"/\S");
var newVal = regexLeft.Replace(text, m => m.Value[0] + " /");
newVal = regexRight.Replace(newVal, m => "/ " + m.Value[1]);

最佳答案

你在找这个吗:

  var text = @"Some text/othertext/ yet more text /last of the text";

// Some text / othertext / yet more text / last of the text
string result = Regex.Replace(text, @"\s*/\s*", " / ");

由零个或多个空格包围的斜杠替换为恰好由一个空格包围的斜杠。

关于c# - 在每个/使用 Humanizer 或 Regex 周围添加空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40349233/

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