如何在 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

更新于: 10 - 9 - 2023

40K+ 次浏览

开启你的 职业生涯

完成课程,获得认证

开始吧
广告