string

string

Module

string

Module summary

String Processing Functions

Description

This module contains functions for string processing.

Exports

len(String) -> Length

Types:

String = string()
Length = integer() >= 0

Returns the number of characters in the string.

equal(String1, String2) -> boolean()

Types:

String1 = String2 = string()

Tests whether two strings are equal. Returns true if they are, otherwise false.

concat(String1, String2) -> String3

Types:

String1 = String2 = String3 = string()

Concatenates two strings to form a new string. Returns the new string.

chr(String, Character) -> Index