day 10 C#打卡
1.String类的使用(1)
using System;
namespace ConsoleApp10
{
class program
{
static void Main(string[] args)
{
/******** 构建字符串并输出 ********/
string str = new string('B', 20);//输出20个B
Console.WriteLine(str);
string str1 = new string(new char[] { 'H', 'e', 'l', 'l', 'o' });
//将一个字符数组构建成一个字符串
Console.WriteLine(str1);
/******** 获取字符串的字符数(Length属性) ********/
string[] str2 = new string[] { "nihaoya","我好呀" };//不指定数组长度
Console.WriteLine("数组的元素有{0}个", str2.Length);
string[] str3 = new string[] { "1","2","3","4","5" };
Console.WriteLine("有{0}个字符", str3.Length);
/******** 获取字符串中的编号 ********/
string Company = "12345678";
for(int i = 0; i < 8; i++)
{
char employee = Company[i];
Console.WriteLine("employee的编号为{0}", employee);//遍历字符串并输出
}
/******** 将小写字母转换成大写字母 (ToUpper()方法) ********/
string str4 = "china";
Console.WriteLine("{1}转换为大写字母为{0}", str4.ToUpper(),str4);
/******** 将大写字母转换成小写字母 (ToLower()方法) ********/
string str5 = "AMErican";
Console.WriteLine("{0}转换为小写字母为{1}", str5, str5.ToLower());
/******** 比较字符串 (Compare()方法) ********/
string str6 = "Welcome to NewYork!";
string str7 = "welcome to Beijing!";
if (string.Compare(str6, str7) == 1)
Console.WriteLine("str6在字典中的位置大于str7");//挨个比较谁的ASCII码值大(且忽略大小写)
else if (string.Compare(str6, str7) == -1)
Console.WriteLine("str6在字典中的位置小于str7");
else if (string.Compare(str6, str7) == 0)
Console.WriteLine("str6与str7的位置相同");
string str8 = "baby";
string str9 = "BABY";
if (string.Compare(str8, str9, false) == 0)//参数为true时,比较时忽略大小写,反之则不
Console.WriteLine("不忽略大小写,str8与str9的位置相同");
else
Console.WriteLine("不忽略大小写,str8与str9的位置不相同");
//Compare方法是一个静态方法,所以在使用时可以直接引用
Console.ReadLine();
}
}
}
运行结果如下