Méthode | Description | |
---|---|---|
SplitQuoted ( this text, char splitChar, char quoteChar, char escapeChar ) : IEnumerable |
Split a string, optional quoted value
|
|
SplitWithEscape ( this text, char splitChar, char escapeChar ) : IEnumerable |
Split string with escape
|
|
SplitWithSelfEscape ( this text, char splitChar ) : IEnumerable |
Split string with escape. The escape char is the same as the splitchar
|
Méthode | Description | |
---|---|---|
GetLastPart ( StringBuilder sb ) : string | ||
SplitQuoted2 ( string text, char splitChar, char quoteChar, char escapeChar ) : IEnumerable |
||
SplitSelfQuoted2 ( string text, char splitChar, char quoteAndEscapeChar ) : IEnumerable |
||
SplitWithEscape2 ( string text, char splitChar, char escapeChar ) : IEnumerable |
||
SplitWithSelfEscape2 ( string text, char splitAndEscapeChar ) : IEnumerable |
public static SplitQuoted ( this text, char splitChar, char quoteChar, char escapeChar ) : IEnumerable |
||
text | this | Text to split |
splitChar | char | Character to split the |
quoteChar | char | Quote character |
escapeChar | char |
/// Escape for the |
Résultat | IEnumerable |
public static SplitWithEscape ( this text, char splitChar, char escapeChar ) : IEnumerable |
||
text | this | |
splitChar | char | |
escapeChar | char | |
Résultat | IEnumerable |
public static SplitWithSelfEscape ( this text, char splitChar ) : IEnumerable |
||
text | this | |
splitChar | char | split char. escaped also with this char |
Résultat | IEnumerable |