day 10 C# 字符串类String的使用(1)
2021/9/22 22:12:27
本文主要是介绍day 10 C# 字符串类String的使用(1),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
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(); } } }
运行结果如下
这篇关于day 10 C# 字符串类String的使用(1)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2024-05-08首个适配Visual Studio平台的国产智能编程助手CodeGeeX正式上线!C#程序员必备效率神器!
- 2024-03-30C#设计模式之十六迭代器模式(Iterator Pattern)【行为型】
- 2024-03-29c# datetime tryparse
- 2024-02-21list find index c#
- 2024-01-24convert toint32 c#
- 2024-01-24Advanced .Net Debugging 1:你必须知道的调试工具
- 2024-01-24.NET集成IdGenerator生成分布式全局唯一ID
- 2024-01-23用CI/CD工具Vela部署Elasticsearch + C# 如何使用
- 2024-01-23.NET开源的简单、快速、强大的前后端分离后台权限管理系统