Java Month Convert convertMonth(String value)

Here you can find the source of convertMonth(String value)

Description

convert Month

License

Apache License

Declaration

public static int convertMonth(String value) 

Method Source Code

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

public class Main {
    public static int convertMonth(String value) {
        value = value.trim();//from  w  w  w.java 2 s.  c om
        return Integer.parseInt(value);
    }
}

Related

  1. convertCharMonthToDecimal(String month)
  2. convertDecimalToCharMonth(int month)
  3. convertMonth(String monthSlashYear)
  4. convertMonthFromNumber(int month)
  5. convertMonthStringToInt(String monthString)
  6. ConvertNumToMonth(int mesEntrada)
  7. convertToAlphaMonth(final int importIntMonth)