Method | Description | |
---|---|---|
HasNonEmbededWhiteSpace ( this text ) : bool |
Return true if the string has whitespaces somewhere at the first embeded level
|
|
Join ( this |
Call string.Join with argument separator
|
|
JoinNewLine ( this |
Call string.Join with argument Environment.NewLine
|
|
RemoveBetween ( this rawString, char enter, char exit ) : string |
http://stackoverflow.com/a/39096603/128662
|
|
Repeat ( this pattern, int count ) : string |
public static HasNonEmbededWhiteSpace ( this text ) : bool | ||
text | this | |
return | bool |
public static Join ( this |
||
values | this |
|
separator | string | |
return | string |
public static JoinNewLine ( this |
||
values | this |
|
return | string |
public static RemoveBetween ( this rawString, char enter, char exit ) : string | ||
rawString | this | |
enter | char | |
exit | char | |
return | string |
public static Repeat ( this pattern, int count ) : string | ||
pattern | this | |
count | int | |
return | string |