String handling#
String manipulation and cleaning#
Converts a string to lowercase. |
|
Converts an NxM string array to an Nx1 string vector by combining each element in a column separated by a user-defined delimiter string. |
|
Finds starting location of one string in another string. |
|
Converts an NxM string array to an Nx1 string vector by combining each element in a column separated by a user-defined delimiter string. |
|
Returns length of a string. |
|
Lays a substring over a string. |
|
Replace all matches of a substring with a replacement string. |
|
Finds starting location of one string in another string, searching from the start to the end of the string. |
|
Finds starting location of one string in another string, searching from the end to the start of the string. |
|
Extracts a substring of a string. |
|
Splits an Nx1 string vector into an NxK string array of the individual tokens. |
|
Splits an Nx1 string vector into an NxK string array of the individual tokens. Pads on the right with null strings. |
|
Converts a string array to a complex numeric matrix. |
|
Strips all whitespace characters from the left and right side of each element in a string array. |
|
Strips all whitespace characters from the left side of each element in a string array. |
|
Strips all whitespace characters from the right side of each element in a string array. |
|
Truncates all elements of a string array to not longer than the specified number of characters. |
|
Truncates the left side of all elements of a string array by a user-specified number of characters. |
|
Truncates all elements of a string array to the specified number of characters, adding spaces on the end as needed to achieve the exact length. |
|
Truncates the right side of all elements of a string array by a user-specified number of characters. |
|
Extracts the leading token from a string. |
|
Changes a string to uppercase. |
String and numeric conversions#
Converts a floating point scalar to a string. |
|
Converts a matrix to a string array using a C language format specification. |
|
Converts numeric integers to their string representation. |
|
Converts a numeric matrix, or dataframe variable to a string array. |
|
Converts a string to floating point numbers. |
|
Converts a string array to a numeric matrix. |