分かりやすく、使いやすく。

年度を取得する方法

スポンサーリンク

C# では年度を取得する標準メソッドは無い為、日付や日時を年度に変換して取得します。4月が年度の開始月の場合は、3ヶ月前の日付を計算して年を取得すれば年度になります。

  1. 4月が年度開始月の場合
  2. 年度の開始月が N 月の場合
  3. 年度を計算する汎用的な関数


4月が年度開始月の場合

C#(実行可能なサンプルコード)
1
2
3
4
5
6
7
8
9
// 現在日時を DateTime で取得する。
var now = System.DateTime.Now;
 
// 3ヶ月前を計算し、年(=年度)を文字列で取得する。
string nendo = now.AddMonths(-3).ToString("yyyy");
 
// 現在日時と年度をデバッグ出力する。
System.Diagnostics.Debug.WriteLine(now);
System.Diagnostics.Debug.WriteLine(nendo); 

上記の実行結果の例は次の通りです。

2018/03/10 17:19:56
2017 

以下は、上記の方法を12ヶ月分テストしたサンプルコードです。

C#(実行可能なサンプルコード)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 1月~12月の日付を DateTime で取得
var m01 = new System.DateTime(2017, 1, 1);
var m02 = new System.DateTime(2017, 2, 15);
var m03 = new System.DateTime(2017, 3, 3);
var m04 = new System.DateTime(2017, 4, 30);
var m05 = new System.DateTime(2017, 5, 31);
var m06 = new System.DateTime(2017, 6, 12);
var m07 = new System.DateTime(2017, 7, 14);
var m08 = new System.DateTime(2017, 8, 20);
var m09 = new System.DateTime(2017, 9, 12);
var m10 = new System.DateTime(2017, 10, 10);
var m11 = new System.DateTime(2017, 11, 29);
var m12 = new System.DateTime(2017, 12, 31);
 
// 年度を計算してデバッグ出力する。
System.Diagnostics.Debug.WriteLine(m01.AddMonths(-3).ToString("yyyy"));
System.Diagnostics.Debug.WriteLine(m02.AddMonths(-3).ToString("yyyy"));
System.Diagnostics.Debug.WriteLine(m03.AddMonths(-3).ToString("yyyy"));
System.Diagnostics.Debug.WriteLine(m04.AddMonths(-3).ToString("yyyy"));
System.Diagnostics.Debug.WriteLine(m05.AddMonths(-3).ToString("yyyy"));
System.Diagnostics.Debug.WriteLine(m06.AddMonths(-3).ToString("yyyy"));
System.Diagnostics.Debug.WriteLine(m07.AddMonths(-3).ToString("yyyy"));
System.Diagnostics.Debug.WriteLine(m08.AddMonths(-3).ToString("yyyy"));
System.Diagnostics.Debug.WriteLine(m09.AddMonths(-3).ToString("yyyy"));
System.Diagnostics.Debug.WriteLine(m10.AddMonths(-3).ToString("yyyy"));
System.Diagnostics.Debug.WriteLine(m11.AddMonths(-3).ToString("yyyy"));
System.Diagnostics.Debug.WriteLine(m12.AddMonths(-3).ToString("yyyy")); 

上記の実行結果は次の通りです。

2016
2016
2016
2017
2017
2017
2017
2017
2017
2017
2017
2017 

年度の開始月が N 月の場合

次のサンプルコードの start に開始月を設定することで年度を取得できます。

C#(実行可能なサンプルコード)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 年度開始月を設定(この例では 6 月が年度開始月)
int start = 6;
 
// 何か月戻すべきかを計算
int backTo = (start - 1) * -1;
 
// 現在日時(DateTime)を取得する。
var now = System.DateTime.Now;
 
// Nヶ月前を計算し、年を文字列で取得する。
string nendo = now.AddMonths(backTo).ToString("yyyy");
 
// 取得した年度をデバッグ出力
System.Diagnostics.Debug.WriteLine(now);
System.Diagnostics.Debug.WriteLine(nendo); 

年度を計算する汎用的な関数

次のサンプルコードの GetNendo では第一引数に yyyymmdd 形式の文字列を与えることで 4 月を開始月とした年度(文字列)を取得できます。年度開始月を変更したい場合は第二引数に開始月の数値を渡します。

Main メソッドで GetNendo の動作を確認しています。

C#(実行可能なサンプルコード)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
public static string GetNendo(string yyyymmdd, int start = 4)
{
    // 何か月戻すべきかを計算する。
    int backTo = (start - 1) * -1;
 
    // yyyymmdd を DateTime に変換する。
    var dt = System.DateTime.ParseExact(yyyymmdd, "yyyyMMdd", null);
 
    // 年度を計算して返す
    return dt.AddMonths(backTo).ToString("yyyy");
}
 
static void Main(string[] args)
{
    // 4月を年度開始月とした場合のテスト
    System.Diagnostics.Debug.WriteLine(GetNendo("20170101")); // 2016
    System.Diagnostics.Debug.WriteLine(GetNendo("20170201")); // 2016
    System.Diagnostics.Debug.WriteLine(GetNendo("20170301")); // 2016
    System.Diagnostics.Debug.WriteLine(GetNendo("20170401")); // 2017
    System.Diagnostics.Debug.WriteLine(GetNendo("20170501")); // 2017
    System.Diagnostics.Debug.WriteLine(GetNendo("20170601")); // 2017
    System.Diagnostics.Debug.WriteLine(GetNendo("20170701")); // 2017
    System.Diagnostics.Debug.WriteLine(GetNendo("20170801")); // 2017
    System.Diagnostics.Debug.WriteLine(GetNendo("20170901")); // 2017
    System.Diagnostics.Debug.WriteLine(GetNendo("20171001")); // 2017
    System.Diagnostics.Debug.WriteLine(GetNendo("20171101")); // 2017
    System.Diagnostics.Debug.WriteLine(GetNendo("20171201")); // 2017
 
    // 6月を年度開始月とした場合のテスト
    System.Diagnostics.Debug.WriteLine(GetNendo("20170101", 6)); // 2016
    System.Diagnostics.Debug.WriteLine(GetNendo("20170201", 6)); // 2016
    System.Diagnostics.Debug.WriteLine(GetNendo("20170301", 6)); // 2016
    System.Diagnostics.Debug.WriteLine(GetNendo("20170401", 6)); // 2016
    System.Diagnostics.Debug.WriteLine(GetNendo("20170501", 6)); // 2016
    System.Diagnostics.Debug.WriteLine(GetNendo("20170601", 6)); // 2017
    System.Diagnostics.Debug.WriteLine(GetNendo("20170701", 6)); // 2017
    System.Diagnostics.Debug.WriteLine(GetNendo("20170801", 6)); // 2017
    System.Diagnostics.Debug.WriteLine(GetNendo("20170901", 6)); // 2017
    System.Diagnostics.Debug.WriteLine(GetNendo("20171001", 6)); // 2017
    System.Diagnostics.Debug.WriteLine(GetNendo("20171101", 6)); // 2017
    System.Diagnostics.Debug.WriteLine(GetNendo("20171201", 6)); // 2017
} 
スポンサーリンク
スポンサーリンク