「C#」開始文字位置を指定する文字列を取得するサンプル
サンプルコード
using System;
namespace StringApplication
{
class StringProg
{
static void Main(string[] args)
{
string str = "Last night I dreamt of San Pedro";
Console.WriteLine(str);
string substr = str.Substring(23);
Console.WriteLine(substr);
Console.ReadKey() ;
}
}
}
実行結果
Last night I dreamt of San Pedro
San Pedro