Click or drag to resize
StringExtensions Class
Contains a variety of extensions for strings
Inheritance Hierarchy
System.Object
  Entelect.Extensions.StringExtensions

Namespace: Entelect.Extensions
Assembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntax
C#
public static class StringExtensions

The StringExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberCapitaliseFirstLetter
Capitalises the first letter of the provided string, if there are multiple words in the string only the first will be capitalised Use this instead of ToTileCase if you wish to preserve camelCase formatting
Public methodStatic memberContains(IEnumerable<String>, String, StringComparison)
Determines whether the provided list of strings contains the specified string using the provided StringComparison object.
Public methodStatic memberContains(String, String, StringComparison)
Checks if a string contains the specified value according to the provided comparison rules
Public methodStatic memberIsNullOrEmpty
Indicates whether the spesified string is null or Empty. Wraps System.String.IsNullOrEmpty
Public methodStatic memberIsNullOrWhiteSpace
Indicates whether the spesified string is null or Empty or only whitespace. Wraps System.String.IsNullOrWhiteSpace
Public methodStatic memberPascalToSpacedString
Takes in a Pascal Case string and spaces between the words
Public methodStatic memberPascalToSpacedStringArray
Takes in a Pascal Case string and splits it into an array of the words
Public methodStatic memberRemoveAllWhitespace
Takes in a string and removes all whitespace in that string, regardless of its position. See http://stackoverflow.com/questions/6219454/efficient-way-to-remove-all-whitespace-from-string
Public methodStatic memberReplaceIgnoreCase
Replaces all the values in a string, regardless of their case with the new value
Top
See Also