# Functions
Array parses a string of value,value,value into a slice of strings
Example:
array := Array("foo,bar,baz") fmt.Println(array) // [foo bar baz].
ArrayC parses a string of value::value::value into a slice of strings
Example:
array := ArrayC("foo::bar::baz") fmt.Println(array) // [foo bar baz].
KeyValue parses a string of key=value into key and value
Example:
key, value, err := KeyValue("foo=bar") if err != nil { // handle error } fmt.Println(key, value) // foo bar.
Properties parses a string of key=value;key=value;key=value into a slice of strings
Example:
properties := Properties("foo=bar;bar=baz") fmt.Println(properties) // [foo=bar bar=baz].
RemoveEmpty removes empty strings from a slice of strings
Example:
array := RemoveEmpty([]string{"foo", "", "bar", "", "baz"}) fmt.Println(array) // [foo bar baz].
# Variables
No description provided by the author