C# Class Patchwork.Engine.Utility.StringHelper

Mostra file Open project: GregRos/Patchwork

Public Methods

Method Description
CharsBetween ( char start, char end ) : char[]
EqualsIgnoreCase ( this a, string b ) : bool
FindLongestCommonSubstring ( string a, string b, bool caseInsensitive = false ) : string
IsNullOrWhitespace ( this str ) : bool
Join ( this strs, string sep = "" ) : string
RandomWordString ( int len ) : string
Replicate ( this str, int count ) : string

Method Details

CharsBetween() public static method

public static CharsBetween ( char start, char end ) : char[]
start char
end char
return char[]

EqualsIgnoreCase() public static method

public static EqualsIgnoreCase ( this a, string b ) : bool
a this
b string
return bool

FindLongestCommonSubstring() public static method

public static FindLongestCommonSubstring ( string a, string b, bool caseInsensitive = false ) : string
a string
b string
caseInsensitive bool
return string

IsNullOrWhitespace() public static method

public static IsNullOrWhitespace ( this str ) : bool
str this
return bool

Join() public static method

public static Join ( this strs, string sep = "" ) : string
strs this
sep string
return string

RandomWordString() public static method

public static RandomWordString ( int len ) : string
len int
return string

Replicate() public static method

public static Replicate ( this str, int count ) : string
str this
count int
return string