C# 字符串的各种方法

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6.   
  7. namespace _06字符串的各种方法  
  8. {  
  9.     class Program  
  10.     {  
  11.         static void Main(string[] args)  
  12.         {  
  13.             //练习一:随机输入你心中想到的一个名字,然后输出它的字符串长度  Length:可以得字符串的长度  
  14.             //Console.WriteLine("请输入你心中想的那个人的名字");  
  15.             //string name = Console.ReadLine();  
  16.             //Console.WriteLine("你心中想的人的名字的长度是{0}",name.Length);  
  17.             //Console.ReadKey();  
  18.   
  19.   
  20.             //Console.WriteLine("请输入你喜欢的课程");  
  21.             //string lessonOne = Console.ReadLine();  
  22.             ////将字符串转换成大写  
  23.             ////  lessonOne = lessonOne.ToUpper();  
  24.             ////将字符串转换成小写形式  
  25.             //// lessonOne = lessonOne.ToLower();  
  26.             //Console.WriteLine("请输入你喜欢的课程");  
  27.             //string lessonTwo = Console.ReadLine();  
  28.             ////   lessonTwo = lessonTwo.ToUpper();  
  29.             ////   lessonTwo = lessonTwo.ToLower();  
  30.             //if (lessonOne.Equals(lessonTwo,StringComparison.OrdinalIgnoreCase))  
  31.             //{  
  32.             //    Console.WriteLine("你们俩喜欢的课程相同");  
  33.             //}  
  34.             //else  
  35.             //{  
  36.             //    Console.WriteLine("你们俩喜欢的课程不同");  
  37.             //}  
  38.             //Console.ReadKey();  
  39.   
  40.   
  41.             //string s = "a b   dfd _   +    =  ,,, fdf ";  
  42.             ////分割字符串Split  
  43.             //char[] chs = { ' ', '_', '+', '=', ',' };  
  44.             //string[] str = s.Split(chs,StringSplitOptions.RemoveEmptyEntries);  
  45.             //Console.ReadKey();  
  46.   
  47.   
  48.             //练习:从日期字符串("2008-08-08")中分析出年、月、日;2008年08月08日。  
  49.             //让用户输入一个日期格式如:2008-01-02,你输出你输入的日期为2008年1月2日  
  50.   
  51.             //string s = "2008-08-08";  
  52.             ////  char[] chs = { '-' };  
  53.             //string[] date = s.Split(new char[] { '-' }, StringSplitOptions.RemoveEmptyEntries);  
  54.             //Console.WriteLine("{0}年{1}月{2}日", date[0], date[1], date[2]);  
  55.             //Console.ReadKey();  
  56.             //老赵  
  57.   
  58.             //string str = "国家关键人物老赵";  
  59.             //if (str.Contains("老赵"))  
  60.             //{  
  61.             //    str = str.Replace("老赵", "**");  
  62.             //}  
  63.             //Console.WriteLine(str);  
  64.             //Console.ReadKey();  
  65.   
  66.   
  67.             //Substring 截取字符串  
  68.   
  69.             //string str = "今天天气好晴朗,处处好风光";  
  70.             //str = str.Substring(1,2);  
  71.             //Console.WriteLine(str);  
  72.             //Console.ReadKey();  
  73.   
  74.             //string str = "今天天气好晴朗,处处好风光";  
  75.             //if (str.EndsWith("风"))  
  76.             //{  
  77.             //    Console.WriteLine("是的");  
  78.             //}  
  79.             //else  
  80.             //{  
  81.             //    Console.WriteLine("不是的");  
  82.             //}  
  83.             //Console.ReadKey();  
  84.   
  85.   
  86.             //string str = "今天天天气好晴朗,天天处天好风光";  
  87.             //int index = str.IndexOf('哈',2);  
  88.             //Console.WriteLine(index);  
  89.             //Console.ReadKey();  
  90.   
  91.   
  92.             //string str = "今天天气好晴朗,处处好风光";  
  93.             //int index = str.LastIndexOf('天');  
  94.             //Console.WriteLine(index);  
  95.             //Console.ReadKey();  
  96.   
  97.   
  98.             ////LastIndexOf  Substring  
  99.             //string path = @"c:\a\b\c苍\d\e苍\f\g\\fd\fd\fdf\d\vfd\苍老师苍.wav";  
  100.             //int index = path.LastIndexOf("\\");  
  101.             //path = path.Substring(index+1);  
  102.             //Console.WriteLine(path);  
  103.             //Console.ReadKey();  
  104.   
  105.   
  106.   
  107.             // string str = "            hahahah          ";  
  108.             //// str = str.Trim();  
  109.             // //str = str.TrimStart();  
  110.             // str = str.TrimEnd();  
  111.             // Console.Write(str);  
  112.             // Console.ReadKey();  
  113.   
  114.             //string str = "fdsfdsfds";  
  115.             //if (string.IsNullOrEmpty(str))  
  116.             //{  
  117.             //    Console.WriteLine("是的");  
  118.             //}  
  119.             //else  
  120.             //{  
  121.             //    Console.WriteLine("不是");  
  122.             //}  
  123.             //string[] names = { "张三", "李四", "王五", "赵六", "田七" };  
  124.             ////张三|李四|王五|赵六|田七  
  125.             //string strNew = string.Join("|", "张三","李四","王五","赵六","田七");  
  126.             //Console.WriteLine(strNew);  
  127.             //Console.ReadKey();  
  128.   
  129.   
  130.   
  131.   
  132.         }  
  133.     }  
  134. }  
shashou47

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: