使用 Humanizer 或 Regex 在每个 / 周围添加 space

Add space around each / using Humanizer or Regex

我有如下字符串:

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

我想规范化每个斜杠周围的 space,使其匹配以下内容:

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

即每个斜线前一个 space 和斜线后一个 space。我如何使用 Humanizer 或使用 single 正则表达式来做到这一点? 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*", " / ");

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