Strings
The Strings folder contains actions that can be used while working with strings:
1. String TrimStart โ The white spaces are removed from the beginning of a string.
2. String TrimEnd โ The white spaces are removed from the end of a string
3. String Trim โ The white spaces are removed from a string, at the beginning and at the end of the string
4. String ToUpper โ Converts a string to uppercase.
5. String ToLower โ Converts a string to lowercase.
6. String StartsWith โ Checks if a string starts with a specified substring.
7. String Split โ Split a string into a list of substrings based on a separator.
8. String NullOrEmpty โ Check whether the specified string is null or empty.
9. String Join โ Concatenates the members of a collection, using the specified separator between each member.
10. String IndexOf โ Reports the zero-based index of the first occurrence of the specified character in this string.
11. String EndsWith โ Check if a string ends with a specified substring.
12. String Contains โ Check if a string contains a substring.
13. String Concat โ Concatenates two strings.
14. Substring โ Retrieves a substring that starts at a specified character position.
15. RegEx validate โ Checks if a string matches some RegEx.
16.ย Search by String Similarityย โ Search a string in a list of strings by estimating the similarity.
