Format |
Output a string with parameters |
Connect |
Concatenate two strings together |
Length |
Get the length of a string |
Replace |
After replacing all the specified strings in the target string, output the new string |
Find |
Re-search for the first occurrence of a specified string in the target string. |
Sub |
After intercepting a string of a specified length from a specified position, output a new string |
Split |
Use the specified string as the delimiter to cut the target string into several slices and output the new string. N consecutive delimiters will be cut into N-1 half-width spaces as string list elements. |
Find At |
Extract characters according to the string position list and combine them into a new string output |
To Upper |
Convert all characters in the target string to uppercase |
To Lower |
Convert all characters in the target string to lowercase |
Strip |
Remove all spaces before the first non-space character and after the last non-space character in the target string |
Join |
Output a new string after concatenating with the specified identifier |