| ST_complement |
Compute the complement of a in b (the elements of b that are not in a). |
| ST_intersection |
Find the set intersection of two vectors. (All the elements that are in a and b) |
| ST_set |
The ST_set function takes an vector argument (A), and returns a vector that is sorted in ascending order, and has no duplicate values. |
| ST_seti |
The ST_seti function takes an vector argument (A) and removes duplicate elements. The function returns an index vector of the result. |
| ST_union |
ST_union |
| SplitPath |
SplitPath breaks a full path into its four components: drive name, diretory name, file name and extension. |
| SplitPlaceholder |
SplitPlaceholder splits a placeholder text into tokens. |
| StringToField |
StringToField works the same way as the FileToField function. The only difference is that the first parameter of StringToField is a scalar string. |
| s |
_s returns a translated string for an English string. If a translation is not available the function returns the English string. So far the only available language is German. A Japanese translation will soon be available. |
| base64_decode |
base64_decode decodes a string that had been encoded using the base64_encode function. |
| base64_encode |
base64_encode encodes data into the base64 format |
| binary_decode |
Is replaced by base64_encode. |
| binary_encode |
Is replaced by base64_encode. |
| format_number |
format_number converts a number to a string. The decimal character and the thousands separator can be specified. |
| ltostr |
ltostr converts a real matrix of integers to a string matrix of specified base. Base must be in the range 2 to 36. |
| md5 |
md5 calculates the MD5 check sum using the algorithm http://www.faqs.org/rfcs/rfc1321.html, MD5 Message-Digest Algorithm (RFC 1321). |
| regex |
regex checks if elements of a string vector matches a regular expression. |
| regsplit |
regsplit splits a string using regular expressions. |
| smprintf |
smprintf formats a double or string matrix and returns the data as a scalar string or string matrix. |
| sort |
sort performs a sort from a real, complex or string matrix or vector. |
| sorti |
sorti sorts a real, complex or string matrix or vector in ascending order and returns an index vector of the sorted matrix. |
| sprintf |
sprintf returns data in formatted form as a string. |
| strCharToOem |
strCharToOem translates a string from the Windows character set into the OEM-defined character set. |
| strOemToChar |
strOemToChar translates a string from the OEM-defined character set into the Windows character set. |
| strcat |
strcat concatenates the strings of a vector to one string. The elements are separated by a separator string. |
| strchar |
strchar creates a string from a vector from numbers. |
| strcode |
strcode returns the code values (numbers) of the given string. |
| strempty |
strempty creates a matrix of strings with zero length. |
| strextract |
strextract returns a substring of its argument string. |
| strfind |
strfind searches for the occurence of a substring in a scalar string. |
| strfindreplace |
strfindreplace performs a find-and-replace operation in a string matrix. |
| strlen |
strlen returns the length of a string in bytes. |
| strlower |
strlower converts any uppercase letters in the given string to lowercase. |
| strmatch |
strmatch checks if elements of a string matrix match a pattern. |
| strmatchi |
strmatchi returns a vector of indices of those matrix elements which match the given pattern. |
| strremove |
strremove removes any vector or matrix element that matches the given string ssRemove. |
| strsplit |
strsplit splits a scalar string into a string vector of single characters. |
| strspn |
strspn returns the index of the first character in smString1 that does not belong to the set of characters in ssString2. |
| strtod |
strtod converts a string matrix to a double-precision matrix. |
| strtok |
strtok finds all tokens in a scalar string. |
| strtol |
strtol converts a string matrix to a long-integer value. |
| strtrim |
strtrim removes all blank and tab characters from a string matrix. |
| strupper |
strupper converts any lower case letters in the given string to upper case. |
| sum |
sum computes the sum of all elements for a real or complex vector. Strings from string vectors will be appended to a scalar string. When the argument is a matrix, a row vector will be created containing the sum of the matrix columns. |
| utf8_decode |
utf8_decode converts an UTF8 string to an ANSI string. |
| utf8_encode |
utf8_encode converts an ANSI string to an UTF8 string. |
| utf_to_locale |
utf_to_locale creates an 8-Bit-ANSI string from a Unicode string. |
| uuid |
uuid returns a Universally Unique Identifier (UUID) as a string. |