Procedure | Location | Procedure Type | Description |
---|---|---|---|
adjustl | stdlib_string_class | Interface | Left-adjust the character sequence represented by the string. The length of the character sequence remains unchanged. |
adjustr | stdlib_string_class | Interface | Right-adjust the character sequence represented by the string. The length of the character sequence remains unchanged. |
char | stdlib_string_class | Interface | Return the character sequence represented by the string. |
iachar | stdlib_string_class | Interface | Code in ASCII collating sequence. |
ichar | stdlib_string_class | Interface | Character-to-integer conversion function. |
index | stdlib_string_class | Interface | Position of a substring within a string. |
len | stdlib_string_class | Interface | Returns the length of the character sequence represented by the string. |
len_trim | stdlib_string_class | Interface | Returns the length of the character sequence without trailing spaces represented by the string. |
lge | stdlib_string_class | Interface | Lexically compare the order of two character sequences being greater equal, The left-hand side, the right-hand side or both character sequences can be represented by a string. |
lgt | stdlib_string_class | Interface | Lexically compare the order of two character sequences being greater, The left-hand side, the right-hand side or both character sequences can be represented by a string. |
lle | stdlib_string_class | Interface | Lexically compare the order of two character sequences being less equal, The left-hand side, the right-hand side or both character sequences can be represented by a string. |
llt | stdlib_string_class | Interface | Lexically compare the order of two character sequences being less, The left-hand side, the right-hand side or both character sequences can be represented by a string. |
repeat | stdlib_string_class | Interface | Repeats the character sequence hold by the string by the number of specified copies. |
scan | stdlib_string_class | Interface | Scan a string for the presence of a set of characters. Scans a string for any of the characters in a set of characters. |
trim | stdlib_string_class | Interface | Returns the character sequence hold by the string without trailing spaces. |
verify | stdlib_string_class | Interface | Scan a string for the absence of a set of characters. Verifies that all the characters in string belong to the set of characters in set. |