parseDate"
From Documentation
(Created page with "{{ZUMLReferencePageHeader}} The default method: <source lang="java"> Date parseDate(String source, String pattern); </source> :i.e., <javadoc method="parseDate(java.lang.Strin...") |
m |
||
Line 11: | Line 11: | ||
Parses text from the beginning of the given string to produce a date with the given pattern. | Parses text from the beginning of the given string to produce a date with the given pattern. | ||
− | There is another extended built in function, | + | There is another extended built-in function, |
<source lang="java"> | <source lang="java"> |
Revision as of 04:03, 7 May 2012
The default method:
Date parseDate(String source, String pattern);
Parses text from the beginning of the given string to produce a date with the given pattern.
There is another extended built-in function,
Date parseDate(String source, String pattern, Locale locale, TimeZone timezone, String dateStyle, String timeStyle) throws Exception {
Parses text from the beginning of the given string to produce a date with the given pattern, locale, timezone, date style and time style.
You can define a method to use this function by xel-method
Note: If the date style / time style is applied, the pattern will be ignored.
Parameters: In both default and extended function:
- source - the text to parse
- pattern - the pattern to apply
In extended function only:
- locale - the locale to apply
- timezone - the timezone to apply
- dateStyle - the date style to apply
- timeStyle - the time style to apply
Version History
Version | Date | Content |
---|---|---|
6.0.0 |