Shiny Language Reference

Language Reference > String Functions


String Manipulation Functions

These statements operate on a string constant or variable of type STRING

 

strleft - Retrieves N chars from the left of the string

strright - Retrieves N chars from the right of the string

strmid - Retrieves N chars at position P in the string

strlen - Retrieves the length of a string

strfind - Returns the first occurrence of a substring in a string

strrfind - Returns the last occurrence of a substring in a string

strreplace - Replaces all occurrences of substring A in string B with new string C

stralloc - Allocates empty space in a string for Win32API functions

strupper - Convert a string to uppercase

strlower - Convert a string to lowercase