2017年8月10日

【PowerShell】生年月日から現在の年齢を取得するスクリプト


生年月日から現在の年齢を取得するスクリプトを作ってみました。

  1. #################################################################
  2. ## Get-Age.ps1
  3. ##
  4. ## 現在の年齢を取得する。
  5. #################################################################
  6. Param([System.String] $birthday)
  7.  
  8. #誕生日から年、月、日を取得
  9. $a = $birthday.Split('/')
  10. $y = $a[0]
  11. $m = $a[1]
  12. $d = $a[2]
  13.  
  14. #今日の日付を取得
  15. $today = Get-Date
  16.  
  17. #比較用の日付を作成
  18. $date1 = New-Object System.DateTime $today.Year, $today.Month, $today.Day
  19. $date2 = New-Object System.DateTime $today.Year, $m, $d
  20.  
  21. if ($date1 -ilt $date2)
  22. {
  23. #今年の誕生日を過ぎてなければ、年数から1引いた数を年齢とする。
  24. $age = $today.Year - $y -1
  25. }
  26. else{
  27. #今年の誕生日を迎えていれば、年数をそのまま年齢とする。
  28. $age = $today.Year - $y
  29. }
  30.  
  31. Write-Host $age

実行結果
PS C:\work\PowerShell> .\Get-Age.ps1 2000/8/10
17



スポンサーリンク



Follow Me on Pinterest
Clip to Evernote