Strings
The Strings
class is a part of the Chase CommonLib library developed by LFInteractive LLC. It provides a set of static methods for performing various string-related operations in .NET 6.0 and higher. This documentation will describe the methods available in the Strings
class and provide example code snippets for each method.
Methods
GetValidFileName
This method takes an original string and removes any characters that are not valid in a file name. It iterates through the characters of the original string and replaces any invalid characters with an empty string. The resulting string is a valid file name that can be used to create files.
Example:
IsAlphaNumeric
This method checks whether a given string consists of only alphanumeric characters (letters and digits). It iterates through the characters of the input string and returns true
if all characters are alphanumeric, and false
if any non-alphanumeric character is found.
Example:
IsAlphabetical
This method checks whether a given string consists of only alphabetical characters (letters). It iterates through the characters of the input string and returns true
if all characters are letters, and false
if any non-letter character is found.
Example:
This concludes the documentation for the Strings
class in the Chase CommonLib library. You can use the provided methods to perform common string-related operations in your .NET applications.
Last updated
Was this helpful?