LocalDate.Parse Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| Parse(String, DateTimeFormatter) | |
| Parse(ICharSequence) |
Obtains an instance of LocalDate from a text string such as 2007-12-03. |
| Parse(String) | |
| Parse(ICharSequence, DateTimeFormatter) |
Obtains an instance of LocalDate from a text string using a specific formatter. |
Parse(String, DateTimeFormatter)
public static Java.Time.LocalDate? Parse(string? text, Java.Time.Format.DateTimeFormatter? formatter);
static member Parse : string * Java.Time.Format.DateTimeFormatter -> Java.Time.LocalDate
Parameters
- text
- String
- formatter
- DateTimeFormatter
Returns
Applies to
Parse(ICharSequence)
Obtains an instance of LocalDate from a text string such as 2007-12-03.
[Android.Runtime.Register("parse", "(Ljava/lang/CharSequence;)Ljava/time/LocalDate;", "", ApiSince=26)]
public static Java.Time.LocalDate? Parse(Java.Lang.ICharSequence? text);
[<Android.Runtime.Register("parse", "(Ljava/lang/CharSequence;)Ljava/time/LocalDate;", "", ApiSince=26)>]
static member Parse : Java.Lang.ICharSequence -> Java.Time.LocalDate
Parameters
- text
- ICharSequence
the text to parse such as "2007-12-03", not null
Returns
the parsed local date, not null
- Attributes
Remarks
Obtains an instance of LocalDate from a text string such as 2007-12-03. The string must represent a valid date and is parsed using DateTimeFormatter.ISO_LOCAL_DATE.
Java reference for java.time.LocalDate.parse.
Applies to
Parse(ICharSequence, DateTimeFormatter)
Obtains an instance of LocalDate from a text string using a specific formatter.
[Android.Runtime.Register("parse", "(Ljava/lang/CharSequence;Ljava/time/format/DateTimeFormatter;)Ljava/time/LocalDate;", "", ApiSince=26)]
public static Java.Time.LocalDate? Parse(Java.Lang.ICharSequence? text, Java.Time.Format.DateTimeFormatter? formatter);
[<Android.Runtime.Register("parse", "(Ljava/lang/CharSequence;Ljava/time/format/DateTimeFormatter;)Ljava/time/LocalDate;", "", ApiSince=26)>]
static member Parse : Java.Lang.ICharSequence * Java.Time.Format.DateTimeFormatter -> Java.Time.LocalDate
Parameters
- text
- ICharSequence
the text to parse, not null
- formatter
- DateTimeFormatter
the formatter to use, not null
Returns
the parsed local date, not null
- Attributes
Remarks
Obtains an instance of LocalDate from a text string using a specific formatter. The text is parsed using the formatter, returning a date.
Java reference for java.time.LocalDate.parse.