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.