Skip to main content

Strings

Text in East is represent as strings.

String values and type

Strings are dynamically sized and support the full set of unicode characters. The East type for strings is StringType. The JavaScript values for StringType are standard strings like "", "abc", etc.

East typeExample value (JavaScript)East object notation
StringType""""
StringType"abc""abc"
StringType"📊📈 Optimize!""📊📈 Optimize!"

Printing values

Values can be printed to strings using the Print function. This produces output in the "East object notation" style. For completeness, here is how all the various East types are represented:

East functionDescriptionExample usageResult
PrintPrint a BooleanPrint(true)"true"
PrintPrint a integerPrint(1n)"1"
PrintPrint a floatPrint(3.14)"3.14"
PrintPrint a stringPrint("abc")"\"abc\""
PrintPrint a date-timePrint(new Date("2023-07-01T12:00:00.000Z"))"2023-07-01T12:00:00.000"
PrintPrint a nullPrint(null)"null"
PrintPrint a structPrint({ id: 1n, name: "Alice" })"( id=1, name=\"Alice\", )"
PrintPrint a variantPrint(Variant("Circle", 2.5))".Circle 2.5"
PrintPrint an arrayPrint([1n, 2n, 3n])"[ 1, 2, 3, ]"
PrintPrint a setPrint(new Set(["a", "b"]))"{ \"a\", \"b\", }"
PrintPrint a dictionaryPrint(new Map([["a", 1n], ["b", 2n]]))"{ \"a\": 1, \"b\": 2, }"
PrintPrint a blobPrint(new Uint8Array[1,3,3,7])"0x01030307"

Joining strings and string templates

To build more complex strings the StringJoin function is often employed. StringJoin will concanate two or more strings together, optionally with a seperator (much like .join on arrays in TypeScript/JavaScript). It is most often used as a JavaScript

tagged template string. For example:

StringJoin`My name is ${name} and my age is ${age}.`

This will automatically construct an East expression that prints the interpolated variables (name and age above) to strings if they are not already, and then stitch together the result.

East functionDescriptionExample usageResult
StringJoinJoin values with a seperatorStringJoin(["a", "b"], ".")"a.b"
StringJoinConstruct a template string StringJoin`My name is ${"Alice"}` "My name is Alice"

String operations

Strings can be manipulated in a variety of ways, with simple range-based extraction and regular expressions:

East functionDescriptionExample usageResult
SubstringExtract a part of a stringSubstring("abcdefg", 0, 3)"abc"
LowercaseReplace uppercase characters with lowercaseLowercase("Abc")"abc"
UppercaseReplace lowercase characters with uppercaseUppercase("Abc")"ABC"
RegexContainsReplace lowercase characters with uppercaseRegexContains("Elara", "lara")true
RegexReplaceReplace lowercase characters with uppercaseRegexReplace("Elara", "lara", "LARA")"ELARA"

Web helper utilities

The Elara platform is capable of integrating with external web APIs. To aid with this, East provides a range of utility functions for working with URLs and authentication systems.

East functionDescriptionExample usageResult
AsciiToBase64Encode the bytes of a string as a base64 stringAsciiToBase64("Elara")"RWxhcmE="
Base64ToAsciiDecode a base64 string to construct a stringBase64ToAscii("RWxhcmE=")"Elara"
Base64ToHexRe-encode a base64 string as hexadecimalBase64ToHex("RWxhcmE=")"456c617261"
HexToBase64Re-encode a hexadecimal string as base64HexToBase64("456c617261")"RWxhcmE="
AsciiToHexEncode the bytes of a string as a hexadecimal stringAsciiToHex("Elara")"456c617261"
HexToAsciiDecode a hexadecmimal string to construct a stringHexToAscii("456c617261")"Elara"
URIEncodeEncode a string as a URI path componentURLEncode("two words")"two%20words"
URIDecodeDecode a URI path component into a stringURLDecode("two%20words")"two words"
HashHash a string with chosen algorithmHash("message", "md5", "hex")"78e731027d8fd50ed642340b7c9a63b3"
HMACConstruct a hash-based message authentication code (HMAC)HMAC("message", "key", "sha256", "base64")"bp7ym3X//Ft6uuUn1Y/a2y/kLnIZARl2kXNDBl9Y7Uo="

Parsing

The Parse function allows you to convert printed values to other East types. Currently Parse only supports DateTimeType.

East functionDescriptionExample usageResult
ParseRead a value from a stringParse("2023-07-01T12:00.00.000")2023-07-01T12:00.00.000

Both Parse and Print support special datetime formatting options. For more information see

the tutorial on dates and time.

Creating and reading JSON

East also has functions for printing and reading JSON, ToJSON and FromJSON.

East functionDescriptionExample usageResult
ToJsonConstruct East's canonical JSON representation of a valueToJson(true)"true"
FromJsonParse a JSON string and construct an East valueFromJson(BooleanType, "true")true

A canonical JSON representation is defined every possible value in East. However the JSON representation is ambiguous, and the type to decode must be specified as the first argument to FromJson.

Ordering

Strings are ordered (by Less, sets, etc) in lexical order, like words in a dictionary. The order is defined by the unicode values of the characters. In case that one string is a prefix of another, the shorter string is ordered first.

Representation

String values are represented as standard strings in Elara's canonical JSON representation. They are printed the same (with double quotes and characters by \ as necessary) in East's object notation generated by Print.

Next steps

Continue to the next tutorial to understand how to use and manipulate date and time with East and Elara.