StaticdecodeDecode content type formatted string as OINO serialization.
string to decode
content type for serialization
StaticdecodeDecode CSV string as OINO serialization.
string to decode
StaticdecodeDecode Formdata string as OINO serialization.
string to decode
StaticdecodeDecode HTML string as OINO serialization.
string to encode
StaticdecodeDecode JSON string as OINO serialization.
string to decode
StaticdecodeDecode Urlencode string as OINO serialization.
string to decode
StaticencodeEncode OINO serialized string to the content type formatting.
string to encode
content type for serialization
StaticencodeEncode OINO serialized strings as valid CSV.
string to encode
StaticencodeEncode OINO serialized strings as valid Formdata.
string to encode
StaticencodeEncode OINO serialized strings as valid HTML content.
string to encode
StaticencodeEncode OINO serialized strings as valid JSON.
string to encode
wether it is a value type
StaticencodeEncode OINO serialized strings as valid Urlencode.
string to encode
StaticsplitSplit string by the top level of the given type of brackets. E.g. splitByBrackets("a(bc(d))ef(gh)kl", true, true, '(', ')') would return ["a", "bc(d)", "ef", "gh", "kl"]
string to split
whether to include strings between top level brackets
whether to include final block that is missing necessary end brackets
starting bracket, e.g. '('
ending bracket, e.g. ')'
StaticsplitSplit string by delimeter excluding delimeters inside given brackets. E.g. splitExcludingBrackets("a,(bc,d),ef,(g,h),k", ',', '(', ')') would return ["a", "bc,d", "ef", "g,h", "k"]
string to split
string to use as delimeter
starting bracket, e.g. '('
ending bracket, e.g. ')'
Static class string utilities.