1. 程式人生 > >常用的字串操作方法,DateTime與TimeSpan

常用的字串操作方法,DateTime與TimeSpan

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 職稱列舉型別
{

    class Class1
    {
       
       


        static void Main(string[] args)
        {


            string str1 = "this is world";
            string str2 = "th,is";
            Console.WriteLine(string.Equals(str1,str2));//str1和str2是否相等
            Console.WriteLine(str1.IndexOf("is"));//is在str1中第一次出現的位置。
            Console.WriteLine(str1.LastIndexOf("is"));//is在str1中最後一次出現的位置

            Console.WriteLine(str1.Insert(2,"as"));//在2處插入字串as
            Console.WriteLine(str1.Remove(1,2));//去掉1開始的2個字元
            Console.WriteLine(str1.Replace("is","de"));//第一個引數是被替換。
            
            //Split分離的是字串中存在空的地方
            string[] str = str1.Split(',');
            for (int i = 0; i < str.Length;i++ )
            {
                Console.WriteLine(str[i]);

            }
            /*
             * 注意,Split(',')表示對字串中有逗號的分割,
             *      結果是:
             *      th
                    is,因為th和is之間存在逗號。
             */
            string[] str3 = str2.Split(',');
            for (int i = 0; i < str3.Length; i++)
            {
                Console.WriteLine(str3[i]);

            }
            //複製到字元陣列,將字串轉換成陣列,這樣就可以用for迴圈挨個將字元取出。
            /*l
              o
              v
              e*/
            string str4 = "love";
            Char[] charArray = str4.ToCharArray();
            for (int i = 0; i < charArray.Length;i++ )
            {
                Console.WriteLine(charArray[i]+" ");

            }


            //大小寫轉換
            Console.WriteLine(str4.ToUpper());
            Console.WriteLine(str4.ToLower());
            /*
             * 結果:
             * LOVE
               love
             * */


            /* DateTime和TimeSpan*/
            DateTime d1 = new DateTime(
                2018,//year
                12,//month
                12,//day
                23,//hours
                12,//minute
                12,//second
                11//millisecond

                );
            DateTime d2 = new DateTime(2018,12,5);
            DateTime d3 = DateTime.Now;//取出當前的日期和時間。
            d3.ToLongDateString();
            Console.WriteLine("哈哈哈" + string.Format("{0:F}", d3));//哈哈哈2018年6月7日 17:49:13
            Console.WriteLine(d1);//2018/12/12 23:12:12,
            Console.WriteLine(d3);//2018/6/7 17:13:10,
            Console.WriteLine(d2);//2018/12/5 0:00:00
            Console.WriteLine("{0:F}", d1);//2018年12月12日 23:12:12
            Console.WriteLine("{0}", d2);// 2018/12/5 0:00:00
            Console.WriteLine("{0}--{1}--{2}--{3}", d1.Year, d1.Month, d1.Day, d1.DayOfWeek);//2018--12--12--Wednesday
            
            //TimeSpan
            TimeSpan ts1 = d1.TimeOfDay;//當天的時間,就是d1的時間中的當天的時間點。
            TimeSpan ts2 = d1 - d2;
            //TimeSpan中的Days表示時間間隔的天數部分。
            Console.WriteLine("{0}--{1}--{2}", ts1, ts2, ts2.Days);//23:12:12.0110000--7.23:12:12.0110000--7

            string s1 = d1.ToLongDateString();//2018年12月12日
            string s2 = d1.ToShortDateString();//2018/12/12
            string s3 = string.Format("{0:yyyy-mm-dd}",d2);
            Console.WriteLine("{0}--{1}--{2}", s1, s2, s3);//2018年12月12日--2018/12/12--2018-00-05
            
        
        
        }
    }
}