c#中的insert操作

萬里無雲便是我發表於2017-04-21

問題:

c#中的insert操作

程式碼:

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

class test
      {
         static void Main(string[] args)
         {
 
              string old = "abcdefg";//原始字串
              string insert = "fff";//要插入的字串
              Console.WriteLine(old);//檢視原來的字串變化

             old = old.Insert(1, insert);
             Console.WriteLine("檢視第一次插入後的old的變化:" + old);
           
             old = old.Insert(0, insert);
             Console.WriteLine("檢視第一次插入後的old的變化:"+old);

            Console.ReadLine();
        }
    }

執行結果:、




相關文章