Skip to content

New String Functions Added to the Standard Library

library

The Standard Library (opens in a new tab) has been updated and expanded to include various new String functionalities to better handle and manipulate string data. New functions include:

NameDescription
string_joinConcatenates String or Character data.
string_replaceSearches for a string pattern and replaces it.
string_trimTrims string by deleting leading and trailing whitespaces.
concatoncatenates two strings.
char / byteReturns the character at a specific index/byte position.
num_chars / num_bytesCount the characters/bytes of a string.

A few examples seeing these new functions in action:

// read query
 
def output[1] = concat["Hello ", "World"]  // "Hello World"
def output[2] = string_join[", ",
    {(1, "a"); (2, "b"); (3, "c")}
] // "a, b, c"

Relation:

// read query
 
def output[1] = string_trim["  This works "]  // "This works"
def output[2] = string_replace["rAI", 'r', 'R']  // "RAI"
// read query
 
def output[1] = num_chars["中文例子"]  // 4
def output[2] = char["grün", 3]  // 'ü'

Get Started!

Start your journey with RelationalAI today! Sign up to receive our newsletter, invitations to exclusive events, and customer case studies.

The information you provide will be used in accordance with the terms of our Privacy Policy. By submitting this form, you consent to allow RelationalAI to store and process the personal information submitted above to provide you the content requested.