The parse(CharSequence) method of YearMonth class used to get an instance of YearMonth from a string such as ‘2018-12’ passed as parameter.The string must have a valid value that can be converted to a YearMonth object. The format of String must be uuuu-MM. YearMonths outside the range 0000 to 9999 must be prefixed by the plus or minus symbol.
Syntax:
Java
Java
public static YearMonth parse(CharSequence text)Parameters: This method accepts only one parameter text which represents the text to parse and format of this String must be like uuuu-MM. Return value: This method returns the parsed YearMonth. Exception: This method throws following Exceptions:
- DateTimeException - if the text cannot be parsed.
// Java program to demonstrate
// YearMonth.parse(CharSequence text) method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a YearMonth object
// using parse(CharSequence text)
YearMonth yearMonth = YearMonth.parse("2019-12");
// print instance
System.out.println("YearMonth Parsed:"
+ yearMonth);
}
}
Output:
Program 2:
YearMonth Parsed:2019-12
// Java program to demonstrate
// YearMonth.parse(CharSequence text) method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a YearMonth object
// using parse(CharSequence text)
YearMonth yearMonth = YearMonth.parse("2022-05");
// print instance
System.out.println("YearMonth Parsed:"
+ yearMonth);
}
}
Output:
References:
https://docs.oracle.com/javase/10/docs/api/java/time/YearMonth.html#parse(java.lang.CharSequence)YearMonth Parsed:2022-05