「C#」Substringで文字列の文字を取得

書式
1.開始位置のみ指定する
対象文字列.Substring(開始位置)

2.位置と文字数を指定
対象文字列.Substring(開始位置, 取得文字数)

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
using System;
using System.Collections.Generic;
class Arkgame
{
public static void Main()
{
string target = "study skill in arkgame";
Console.WriteLine("元の文字列: "+target);
//開始位置3 文字数4
string res =target.Substring(3,4);
Console.WriteLine("位置と文字数を指定して文字を取得: "+res);
//開始位置を指定
string res2 = target.Substring(3);
Console.WriteLine("位置のみを指定して文字を取得: "+res2);
Console.ReadKey();
}
}
using System; using System.Collections.Generic; class Arkgame { public static void Main() { string target = "study skill in arkgame"; Console.WriteLine("元の文字列: "+target); //開始位置3 文字数4 string res =target.Substring(3,4); Console.WriteLine("位置と文字数を指定して文字を取得: "+res); //開始位置を指定 string res2 = target.Substring(3); Console.WriteLine("位置のみを指定して文字を取得: "+res2); Console.ReadKey(); } }
using System;
using System.Collections.Generic;
class Arkgame
{
    public static void Main()
    {

        string target = "study skill in arkgame";

        Console.WriteLine("元の文字列: "+target); 
        //開始位置3 文字数4
        string res =target.Substring(3,4);
        Console.WriteLine("位置と文字数を指定して文字を取得: "+res); 

        //開始位置を指定
        string res2 = target.Substring(3);
        Console.WriteLine("位置のみを指定して文字を取得: "+res2); 

        Console.ReadKey();
    }
}

実行結果
元の文字列: study skill in arkgame
位置と文字数を指定して文字を取得: dy s
位置のみを指定して文字を取得: dy skill in arkgame

C#

Posted by arkgame