Strings
Last updated
Last updated
The most basic element supported by ESCL is a plain string. A string represents a line of text containing any character supported by the current locale, and may also include to enable dynamic processing.
String identifiers must be lower case, alphanumeric, begin with a letter, and may include underscores (e.g. my_string_identifier
).
In this example, the hello_message
identifier represents the string Hello, World!
. This string requires no processing or formatting and will be returned verbatim.
A compound string is a string that is constructed by combining one or more strings. Using a , we can pass in the identifier of another string to insert it in place. Each string is processed independently before being combined.
In this example, tos_message
will become Please accept our Terms of Service
for en-US and Accepter nos conditions d'utilisation, s'il vous plaît
for fr-CA.
An alias is a string that contains a single which references another string without any additions or modifications.