Versions Compared

Key

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

...

Code Block
languagebp
// Get the full name for Tuesday in the local culture
Name = SRP_Date("DayOfWeekName", 2)

// Get the abbreviated name for Tuesday in the local culture
Name = SRP_Date("DayOfWeekName", 2, "Abbreviated")


// Get the abbreviated name for Tuesday in Spain
Name = SRP_Date("DayOfWeekName", 2, "Abbreviated", "es-ES")

// Get the shortest name for Tuesday in France
Name = SRP_Date("DayOfWeekName", 2, "Shortest", "fr-FR")

...