Table of Contents
Extensions for strings
public static class StringExt
Inheritance System.Object StringExt
Returns null if a string is empty / whitespace, otherwise just returns back the string
public static string NullIfEmpty(this string s);
public static string RegexReplace(this string input, string pattern, string replacement);
input
System.String
pattern
System.String
replacement
System.String
Puts spaces between capitalized words within a string
public static string Spaced(this string s);
public static string ToTitleCase(this string input);
input
System.String