Method | Description | |
---|---|---|
GetHeadersValue ( String rawHeader ) : String[] |
Separate header name and header value.
|
|
ParseCharsetToEncoding ( String characterSet ) : |
Parse a character set into an encoding.
|
|
RemoveQuotesIfAny ( String text ) : String |
Remove quotes, if found, around the String.
|
|
SplitStringWithCharNotInsideQuotes ( String input, char toSplitAt ) : List |
Split a String into a list of strings using a specified character.
|
public static GetHeadersValue ( String rawHeader ) : String[] | ||
rawHeader | String | |
return | String[] |
public static ParseCharsetToEncoding ( String characterSet ) : |
||
characterSet | String | The character set to parse |
return |
public static RemoveQuotesIfAny ( String text ) : String | ||
text | String | Text with quotes or without quotes |
return | String |
public static SplitStringWithCharNotInsideQuotes ( String input, char toSplitAt ) : List |
||
input | String | A String to split |
toSplitAt | char | The character to use to split with |
return | List |