Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

LocaleShort FormatLong Format
en-US1/14/2020Tuesday, January 14, 2020
es-ES14/01/2020martes, 14 de enero de 2020
fr-FR14/01/2020mardi 14 janvier 2020

If you omit Format or set it "", then "Short" will be used.

...

Code Block
languagebp
// Create an OI date
Date = SRP_Date("Encode", 2020, 1, 14)


// Format a date using the default format and the current locale
Text = SRP_Date("Format", Date)


// Format a date using the long format and the current locale
Text = SRP_Date("Format", Date, "Long")


// Format a date using the long format and the Spanish language
Text = SRP_Date("Format", Date, "Long", "es")


// Format a date using a custom format and the Spanish-MEXICAN language
Text = SRP_Date("Format", Date, "MMMM D, YYYY", "es-MX")

...