如何使用C#计算字符串的长度?
在C#中使用String.Length属性获取字符串的长度" title="字符串的长度">字符串的长度。
str.Length
该属性计算字符串中的单词并显示指定字符串的长度,例如,字符串Amit有4个字符-
string str = "Amit";
示例
以下是用于计算字符串长度的C#程序-
using System;using System.Collections;
namespace Demo {
class Program {
static void Main(string[] args) {
string str = "Amit";
Console.WriteLine("String: "+str);
Console.WriteLine("String Length: "+str.Length);
Console.ReadKey();
}
}
}
输出结果
String: AmitString Length: 4
以上是 如何使用C#计算字符串的长度? 的全部内容, 来源链接: utcz.com/z/361911.html