- Validity of the date
- Date format
- Special case: is not specified
DateToString (Function) In french: DateVersChaîne Res = DateToString("20191225") // Res = "25/12/2019" Res = DateToString(IntegerToDate(73773)) // Res = "25/12/2001" DateToString("") // Retourne "" Res = DateToString("20191225", "MM-JJ-AAAA") // Res = "12-25-2019" Res = DateToString("20791225", "Le numéro du jour JJ du mois n° MM de l'année AAAA") Res = DateToString(DateSys(), maskDateSystem) // Res utilise le format défini dans le projet // La casse des jours et mois en lettres est dépendante des options linguistiques du projet Res = DateToString("20031202", "JJJ JJ MMM AAAA") // Res = "mar. 02 déc. 2003" ou "Mar. 02 Déc. 2003" Res = DateToString("20031202", "JJJJ JJ MMMM AAAA") // Res = "mardi 02 décembre 2003" ou "Mardi 02 Décembre 2003" // La casse des jours et des mois est forcée avec une majuscule Res = DateToString("20031202", "Jjj JJ Mmm AAAA") // Res = "Mar. 02 Déc. 2003" Res = DateToString("20031202", "Jjjj JJ Mmmm AAAA") // Res = "Mardi 02 Décembre 2003" Res = DateToString("20191125", maskDateEmail) // Renvoie "Mon, 25 Nov 2019 00:00:00 +0100" Res = DateToString("20190825", maskDateEmail) // Renvoie "Sun, 25 Aug 2019 00:00:00 +0200" Res = DateToString("20191125", maskDateEmailUTC) // Renvoie "Sun, 24 Nov 2019 23:00:00 +0000" Res = DateToString("20190825", maskDateInternet) // Renvoie "2019-08-25T00:00:00.000+02:00" Res = DateToString("20190825", maskDateInternetUTC) // Renvoie "2019-08-24T22:00:00.000Z" // A la date du 22/01/2019 Res = DateToString("20190101", maskDateRelativeDuration) // Renvoie: il y a 3 semaines Res = DateToString("20191125", maskDateRelativeDuration) // Renvoie: dans 10 mois Res = DateToString("20190118", maskDateRelativeDuration) // Renvoie: la semaine dernière Syntax
Converting a date to string Hide the details
<Result> = DateToString(<Date> [, <Format>])
<Result>: Character string Character string in the specified format. <Date>: Character string or Date variable Date to convert. If this date corresponds to a string, it must be in YYYYMMDD format (YYYY corresponds to the year, MM to the month and DD to the day). <Format>: Optional character string Format of the converted date. This parameter can contain a word, a sentence, ... The characters that represent the different elements of the date (YYYY, YY, MM or DD) will be automatically replaced with the value in the <Date> parameter. In this string:- YYYY represents a 4-digit year,
- YY represents a 2-digit year.
- M represents the month without a leading zero,
- MM represents a 2-digit month,
- MMM represents a 3-letter month (e.g., Jan). The case used depends on the language options of the project.
- Mmm represents a 3-letter month with the first letter in uppercase (e.g., Jan)
This notation is not available. - mmm represents a 3-letter month with the first letter in lowercase (e.g., jan)
This notation is not available. - MMMM represents the month as a full name (e.g., January). The case used depends on the language options of the project.
This notation is not available. - mmmm represents the month as a full name with the first letter in lowercase (e.g., january)
This notation is not available. - D represents the day without a leading zero,
- DD represents a 2-digit day,
- DDD represents a 3-letter day (e.g., Mon). The case used depends on the language options of the project.
- Ddd represents a 3-letter day with the first letter in uppercase (e.g., Mon)
This notation is not available. - ddd represents a 3-letter day with the first letter in lowercase (e.g., mon)
This notation is not available. - DDDD represents the day as a full name (e.g., Monday). The case used depends on the language options of the project.
- Dddd represents the day as a full name with the first letter in uppercase (e.g., Monday).
This notation is not available. - dddd represents the day as a full name with the first letter in lowercase (e.g., monday).
This notation is not available. - M represents the first letter of the day (e.g., M,T,W,T,F,S,S).
If this parameter corresponds to the constant: | | maskDateEmail | The format used corresponds to the date format of the RFC-5322 standard used to encrypt an email, an RSS feed, ... The result is expressed in the local time zone. | maskDateEmailUTC | The format used corresponds to the date format of the RFC-5322 standard used to encrypt an email, an RSS feed, ... The result is expressed in universal time (UTC). | maskDateInternet | The format used corresponds to the RFC-3339 standard used for international communications. The result is expressed in the local time zone. | maskDateInternetUTC | The format used corresponds to the RFC-3339 standard used for international communications. The result is expressed in universal time (UTC). Not available. | maskDateRelativeDuration | This format is used to express the time elapsed (or that will elapse) between the current date and the specified date. This format is expressed in natural language. The different formulations used can be configured in the project description for the current language:- On the "Project" tab, in the "Project" group, click "Description".
- In the "Languages" tab:
- select the language to configure.
- select the "Date" tab.
- Click the "Dates and Times in natural language" button.
- Define (if necessary) the custom captions to use. These captions will be used:
- for the result of DateToString.
- for the controls that use the "Relative duration" display mask.
Not available. | maskDateSystem | The format used corresponds to the format defined in the project description for the current language: - On the "Project" tab, in the "Project" group, click "Description".
- Select the "Languages" tab then the "Date" tab.
- The format used corresponds to:
- the settings of the operating system,
- the specified parameters (with the defined days and months).
|
If this parameter is not specified, the DD/MM/YYYY format is used by default.
Remarks Validity of the date The validity of the date passed as parameter is checked. A message is displayed if the date is invalid. You can check the validity of a date using DateValid.
The date storage format allows you to store dates from 01/01/0001 to 12/31/9999. Date format DateToString is used to format a date returned by IntegerToDate or DateSys. The result can be assigned to a text control, for example. Special case: <Format> is not specified The language options specified for dates in the project description are used if no specific format is defined. To display the linguistic options of the project: - Open the project description: on the "Project" tab, in the "Project" group, click "Description".
- Select the "Language" tab.
For example: - if the project uses the language options of Windows for the dates, the days of the week and the months will start with an Uppercase character on a computer running Windows in English.
- if the project uses specific parameters for the dates for one or more languages (custom name of the day or month, etc.), these parameters will be taken into account for the specified language.
Related Examples:
|
Unit examples (WINDEV): Management of dates
[ + ] Using the Date type of WLanguage and the functions for handling dates.
|
Business / UI classification: Neutral code
This page is also available for…
|
|
|