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

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

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程