Static
decodeDecode content type formatted string as OINO serialization.
string to decode
content type for serialization
Static
decodeDecode CSV string as OINO serialization.
string to decode
Static
decodeDecode Formdata string as OINO serialization.
string to decode
Static
decodeDecode HTML string as OINO serialization.
string to encode
Static
decodeDecode JSON string as OINO serialization.
string to decode
Static
decodeDecode Urlencode string as OINO serialization.
string to decode
Static
encodeEncode OINO serialized string to the content type formatting.
string to encode
content type for serialization
Static
encodeEncode OINO serialized strings as valid CSV.
string to encode
Static
encodeEncode OINO serialized strings as valid Formdata.
string to encode
Static
encodeEncode OINO serialized strings as valid HTML content.
string to encode
Static
encodeEncode OINO serialized strings as valid JSON.
string to encode
wether it is a value type
Static
encodeEncode OINO serialized strings as valid Urlencode.
string to encode
Static
splitSplit 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. ')'
Static
splitSplit 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.