C#中substring ()的用法-iDotNetSpace-ITPUB博客
String.SubString(int index,int length) index:開始位置,從0開始 length:你要取的子字元 ... using System; using System.Collections.Generic; using System.Text; namespace str_sub {class Program {static void Main(string[] args) {string myString = "Hello Word!";...