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.
