| Procedure | Location | Procedure Type | Description |
|---|---|---|---|
| adjustl | stringifor_string_t | Interface | Builtin adjustl overloading. |
| adjustr | stringifor_string_t | Interface | Builtin adjustr overloading. |
| basedir | stringifor_string_t | Function | Return the base directory name of a string containing a file name. |
| basename | stringifor_string_t | Function | Return the base file name of a string containing a file name. |
| camelcase | stringifor_string_t | Function | Return a string with all words capitalized without spaces. |
| capitalize | stringifor_string_t | Function | Return a string with its first character capitalized and the rest lowercased. |
| character_concat_string | stringifor_string_t | Function | Concatenation with character (inverted). |
| character_concat_string_string | stringifor_string_t | Function | Concatenation with character (inverted). |
| character_eq_string | stringifor_string_t | Function | Equal to character (inverted) logical operator. |
| character_ge_string | stringifor_string_t | Function | Greater equal than to character (inverted) logical operator. |
| character_gt_string | stringifor_string_t | Function | Greater than to character (inverted) logical operator. |
| character_le_string | stringifor_string_t | Function | Lower equal than to character (inverted) logical operator. |
| character_lt_string | stringifor_string_t | Function | Lower than to character (inverted) logical operator. |
| character_ne_string | stringifor_string_t | Function | Not equal to character (inverted) logical operator. |
| chars | stringifor_string_t | Function | Return the raw characters data. |
| colorize_str | stringifor_string_t | Function | Colorize and stylize strings, DEFAULT kind. |
| count | stringifor_string_t | Interface | Builtin count overloading. |
| count_substring | stringifor_string_t | Function | Count the number of occurences of a substring into a string. |
| decode | stringifor_string_t | Function | Return a string decoded accordingly the codec. |
| encode | stringifor_string_t | Function | Return a string encoded accordingly the codec. |
| end_with | stringifor_string_t | Function | Return true if a string ends with a specified suffix. |
| escape | stringifor_string_t | Function | Escape backslashes (or custom escape character). |
| extension | stringifor_string_t | Function | Return the extension of a string containing a file name. |
| fill | stringifor_string_t | Function | Pad string on the left (or right) with zeros (or other char) to fill width. |
| free | stringifor_string_t | Subroutine | Free dynamic memory. |
| get_decimal_mode | stringifor_string_t | Subroutine | Get the DECIMAL changeable connection mode for the given unit. |
| get_delimiter_mode | stringifor_string_t | Subroutine | Get the DELIM changeable connection mode for the given unit. |
| get_next_non_blank_character_any_record | stringifor_string_t | Subroutine | Get the next non-blank character, advancing records if necessary. |
| get_next_non_blank_character_this_record | stringifor_string_t | Subroutine | Get the next non-blank character in the current record. |
| glob | stringifor_string_t | Interface | Overloading glob procedure. |
| glob_character | stringifor_string_t | Subroutine | Glob search (character output), finds all the pathnames matching a given pattern according to the rules used by the Unix shell. |
| glob_string | stringifor_string_t | Subroutine | Glob search (string output), finds all the pathnames matching a given pattern according to the rules used by the Unix shell. |
| index | stringifor_string_t | Interface | Builtin index overloading. |
| insert_character | stringifor_string_t | Function | Insert substring into string at a specified position. |
| insert_string | stringifor_string_t | Function | Insert substring into string at a specified position. |
| is_allocated | stringifor_string_t | Function | Return true if the string is allocated. |
| is_digit | stringifor_string_t | Function | Return true if all characters in the string are digits. |
| is_integer | stringifor_string_t | Function | Return true if the string contains an integer. |
| is_lower | stringifor_string_t | Function | Return true if all characters in the string are lowercase. |
| is_number | stringifor_string_t | Function | Return true if the string contains a number (real or integer). |
| is_real | stringifor_string_t | Function | Return true if the string contains a real. |
| is_upper | stringifor_string_t | Function | Return true if all characters in the string are uppercase. |
| join_characters | stringifor_string_t | Function | Return a string that is a join of an array of characters. |
| join_strings | stringifor_string_t | Function | Return a string that is a join of an array of strings. |
| len_trim | stringifor_string_t | Interface | Builtin len_trim overloading. |
| lower | stringifor_string_t | Function | Return a string with all lowercase characters. |
| partition | stringifor_string_t | Function | Split string at separator and return the 3 parts (before, the separator and after). |
| read_delimited | stringifor_string_t | Subroutine | Read a delimited string from a unit connected for formatted input. |
| read_file | stringifor_string_t | Subroutine | Read a file as a single string stream. |
| read_file | stringifor | Subroutine | Read a file as a single string stream. |
| read_formatted | stringifor_string_t | Subroutine | Formatted input. |
| read_line | stringifor_string_t | Subroutine | Read line (record) from a connected unit. |
| read_lines | stringifor_string_t | Subroutine | Read (all) lines (records) from a connected unit as a single ascii stream. |
| read_lines | stringifor | Subroutine | Read lines (records) from a connected-formatted unit. |
| read_undelimited | stringifor_string_t | Subroutine | Read an undelimited string up until end of record or a character from a set of terminators is encountered. |
| read_undelimited_listdirected | stringifor_string_t | Subroutine | Read an undelimited (no leading apostrophe or double quote) character value according to the rules for list directed input. |
| read_unformatted | stringifor_string_t | Subroutine | Unformatted input. |
| repeat | stringifor_string_t | Interface | Builtin repeat overloading. |
| replace | stringifor_string_t | Function | Return a string with all occurrences of substring old replaced by new. |
| replace_one_occurrence | stringifor_string_t | Function | Return a string with the first occurrence of substring old replaced by new. |
| reverse | stringifor_string_t | Function | Return a reversed string. |
| sadjustl | stringifor_string_t | Function | Left adjust a string by removing leading spaces. |
| sadjustl_character | stringifor_string_t | Function | Left adjust a string by removing leading spaces (character output). |
| sadjustr | stringifor_string_t | Function | Right adjust a string by removing leading spaces. |
| sadjustr_character | stringifor_string_t | Function | Right adjust a string by removing leading spaces (character output). |
| scan | stringifor_string_t | Interface | Builtin scan overloading. |
| scount | stringifor_string_t | Function | Count the number of occurences of a substring into a string. |
| search | stringifor_string_t | Function | Search for tagged record into string, return the first record found (if any) matching the tags. |
| sindex_character_string | stringifor_string_t | Function | Return the position of the start of the first occurrence of string |
| sindex_string_character | stringifor_string_t | Function | Return the position of the start of the first occurrence of string |
| sindex_string_string | stringifor_string_t | Function | Return the position of the start of the first occurrence of string |
| slen | stringifor_string_t | Function | Return the length of a string. |
| slen_trim | stringifor_string_t | Function | Return the length of a string, ignoring any trailing blanks. |
| slice | stringifor_string_t | Function | Return the raw characters data sliced. |
| snakecase | stringifor_string_t | Function | Return a string with all words lowercase separated by “_”. |
| split | stringifor_string_t | Subroutine | Return a list of substring in the string, using sep as the delimiter string. |
| split_chunked | stringifor_string_t | Subroutine | Return a list of substring in the string, using sep as the delimiter string, chunked (memory-efficient) algorithm. |
| srepeat_character_string | stringifor_string_t | Function | Concatenates several copies of an input string. |
| srepeat_string_string | stringifor_string_t | Function | Concatenates several copies of an input string. |
| sscan_character_string | stringifor_string_t | Function | Return the leftmost (if |
| sscan_string_character | stringifor_string_t | Function | Return the leftmost (if |
| sscan_string_string | stringifor_string_t | Function | Return the leftmost (if |
| start_with | stringifor_string_t | Function | Return true if a string starts with a specified prefix. |
| startcase | stringifor_string_t | Function | Return a string with all words capitalized, e.g. title case. |
| strim | stringifor_string_t | Function | Remove trailing spaces. |
| string_ | stringifor_string_t | Function | Return a string given a character input. |
| string_assign_character | stringifor_string_t | Subroutine | Assignment operator from character input. |
| string_assign_integer_I1P | stringifor_string_t | Subroutine | Assignment operator from integer input. |
| string_assign_integer_I2P | stringifor_string_t | Subroutine | Assignment operator from integer input. |
| string_assign_integer_I4P | stringifor_string_t | Subroutine | Assignment operator from integer input. |
| string_assign_integer_I8P | stringifor_string_t | Subroutine | Assignment operator from integer input. |
| string_assign_real_R16P | stringifor_string_t | Subroutine | Assignment operator from real input. |
| string_assign_real_R4P | stringifor_string_t | Subroutine | Assignment operator from real input. |
| string_assign_real_R8P | stringifor_string_t | Subroutine | Assignment operator from real input. |
| string_assign_string | stringifor_string_t | Subroutine | Assignment operator from string input. |
| string_concat_character | stringifor_string_t | Function | Concatenation with character. |
| string_concat_character_string | stringifor_string_t | Function | Concatenation with character. |
| string_concat_string | stringifor_string_t | Function | Concatenation with string. |
| string_concat_string_string | stringifor_string_t | Function | Concatenation with string. |
| string_eq_character | stringifor_string_t | Function | Equal to character logical operator. |
| string_eq_string | stringifor_string_t | Function | Equal to string logical operator. |
| string_ge_character | stringifor_string_t | Function | Greater equal than to character logical operator. |
| string_ge_string | stringifor_string_t | Function | Greater equal than to string logical operator. |
| string_gt_character | stringifor_string_t | Function | Greater than to character logical operator. |
| string_gt_string | stringifor_string_t | Function | Greater than to string logical operator. |
| string_le_character | stringifor_string_t | Function | Lower equal than to character logical operator. |
| string_le_string | stringifor_string_t | Function | Lower equal than to string logical operator. |
| string_lt_character | stringifor_string_t | Function | Lower than to character logical operator. |
| string_lt_string | stringifor_string_t | Function | Lower than to string logical operator. |
| string_ne_character | stringifor_string_t | Function | Not equal to character logical operator. |
| string_ne_string | stringifor_string_t | Function | Not equal to string logical operator. |
| strip | stringifor_string_t | Function | Return a copy of the string with the leading and trailing characters removed. |
| strjoin | stringifor_string_t | Interface | |
| strjoin_characters | stringifor_string_t | Function | Return a string that is a join of an array of characters. |
| strjoin_characters_array | stringifor_string_t | Function | Return a string that is a join of columns or rows of an array of characters. |
| strjoin_strings | stringifor_string_t | Function | Return a string that is a join of an array of strings. |
| strjoin_strings_array | stringifor_string_t | Function | Return a string that is a join of columns or rows of an array of strings. |
| sverify_character_string | stringifor_string_t | Function | Return the leftmost (if |
| sverify_string_character | stringifor_string_t | Function | Return the leftmost (if |
| sverify_string_string | stringifor_string_t | Function | Return the leftmost (if |
| swapcase | stringifor_string_t | Function | Return a copy of the string with uppercase characters converted to lowercase and vice versa. |
| tempname | stringifor_string_t | Function | Return a safe temporary name suitable for temporary file or directories. |
| to_integer_I1P | stringifor_string_t | Function | Cast string to integer (I1P). |
| to_integer_I2P | stringifor_string_t | Function | Cast string to integer (I2P). |
| to_integer_I4P | stringifor_string_t | Function | Cast string to integer (I4P). |
| to_integer_I8P | stringifor_string_t | Function | Cast string to integer (I8P). |
| to_real_R16P | stringifor_string_t | Function | Cast string to real (R16P). |
| to_real_R4P | stringifor_string_t | Function | Cast string to real (R4P). |
| to_real_R8P | stringifor_string_t | Function | Cast string to real (R8P). |
| trim | stringifor_string_t | Interface | Builtin trim overloading. |
| unescape | stringifor_string_t | Function | Unescape double backslashes (or custom escaped character). |
| unique | stringifor_string_t | Function | Reduce to one (unique) multiple (sequential) occurrences of a substring into a string. |
| upper | stringifor_string_t | Function | Return a string with all uppercase characters. |
| verify | stringifor_string_t | Interface | Builtin verify overloading. |
| write_file | stringifor_string_t | Subroutine | Write a single string stream into file. |
| write_file | stringifor | Subroutine | Write a single string stream into file. |
| write_formatted | stringifor_string_t | Subroutine | Formatted output. |
| write_line | stringifor_string_t | Subroutine | Write line (record) to a connected unit. |
| write_lines | stringifor_string_t | Subroutine | Write lines (records) to a connected unit. |
| write_lines | stringifor | Subroutine | Write lines (records) to a connected-formatted unit. |
| write_unformatted | stringifor_string_t | Subroutine | Unformatted output. |