如何在 C# 中找到字符串的第一个字符?


要获取第一个字符,可以使用 substring() 方法

假设以下内容是我们的字符串 −

string str = "Welcome to the Planet!";

现在,要获取第一个字符,请在 substring() 方法中设置值 1。

string res = str.Substring(0, 1);

让我们看看完整的代码 −

示例

 运行演示

using System;
public class Demo {
   public static void Main() {
      string str = "Welcome to the Planet!";
      string res = str.Substring(0, 1);
      Console.WriteLine(res);
   }
}

输出

W

更新于:2023 年 9 月 10 日

超过 40K 的浏览量

开启你的职业生涯

通过完成课程获得认证

开始
广告