Method | Description | |
---|---|---|
Center ( this stringToCenter, int totalLength ) : string | ||
Chunkify ( this str, int maxChunkLength ) : IEnumerable |
||
Chunkify ( this str, int maxChunkLength, char removedSplitters, char keptSplitters ) : IEnumerable |
||
LevenshteinDistance ( this str, string compare, bool caseSensitive = true ) : int | ||
StripHTML ( this HTMLText ) : string | ||
Truncate ( this value, int maxLength, string endString = "" ) : string |
public static Center ( this stringToCenter, int totalLength ) : string | ||
stringToCenter | this | |
totalLength | int | |
return | string |
public static Chunkify ( this str, int maxChunkLength ) : IEnumerable |
||
str | this | |
maxChunkLength | int | |
return | IEnumerable |
public static Chunkify ( this str, int maxChunkLength, char removedSplitters, char keptSplitters ) : IEnumerable |
||
str | this | |
maxChunkLength | int | |
removedSplitters | char | |
keptSplitters | char | |
return | IEnumerable |
public static LevenshteinDistance ( this str, string compare, bool caseSensitive = true ) : int | ||
str | this | |
compare | string | |
caseSensitive | bool | |
return | int |
public static StripHTML ( this HTMLText ) : string | ||
HTMLText | this | |
return | string |
public static Truncate ( this value, int maxLength, string endString = "" ) : string | ||
value | this | |
maxLength | int | |
endString | string | |
return | string |