在 C# 中截断字符串

Muhammad Maisam Abbas 2023年10月12日
在 C# 中截断字符串

本教程将介绍在 C# 中将字符串变量截断为指定长度的方法。

在 C# 中使用 String.Substring() 方法截断字符串

不幸的是,没有内置的方法来截断 C# 中的字符串。为此,我们必须使用自己的逻辑编写代码。String.Substring(x, y) 方法从字符串中检索一个子字符串,该子字符串从 x 索引开始,长度为 y。我们可以使用 String.Substring() 方法和 LINQ 来创建一个扩展方法,该扩展方法可以处理字符串变量。以下代码示例向我们展示了如何使用 C# 中的 String.Substring() 方法截断字符串变量。

using System;

namespace truncate_string {
  public static class StringExt {
    public static string Truncate(this string variable, int Length) {
      if (string.IsNullOrEmpty(variable))
        return variable;
      return variable.Length <= Length ? variable : variable.Substring(0, Length);
    }
  }
  class Program {
    static void Main(string[] args) {
      string variable = "This is a long, very long string and we want to truncate it.";
      variable = variable.Truncate(22);
      Console.WriteLine(variable);
    }
  }
}

输出:

This is a long, very l

在上面的代码中,我们使用 C# 中的 String.Substring() 方法将字符串变量 variable 截短为 22 个字符。然后,我们创建了扩展方法 Truncate(),该方法采用所需的长度并将字符串截断为所需的长度。如果字符串变量为 null 或为空,则 Truncate() 方法将返回字符串。如果所需的长度大于字符串的长度,则它将返回原始字符串。如果较小,则 Truncate() 方法使用 String.Substring() 方法将字符串截断为所需的长度,然后返回该字符串的新截断副本。

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn

相关文章 - Csharp String