Java Month paraseMonth(String yearMonth)

Here you can find the source of paraseMonth(String yearMonth)

Description

parase Month

License

Apache License

Declaration

public static int paraseMonth(String yearMonth) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {

    public static int paraseMonth(String yearMonth) {
        String month = yearMonth.substring(4);

        return Integer.parseInt(month);

    }/*  w  w  w.ja  v a 2s .  co m*/
}

Related

  1. monthToTerm(int month)
  2. nextMonth(String s)
  3. nextMonthIndex(int current, int step)
  4. normalizeMonth(final int month)
  5. normalizeMonth(String word)
  6. parseMonth(final int month)
  7. ResolveMonth(String MonthToResolve)
  8. returnMonth(String month)
  9. roundMonthUnits(final int defaultUnitValue)