How do I escape comma's in an array I try: key[] = one, two, three I get: { "key": [ "one", "two", "three" ] } But I want: { "key": [ "one, two, three" ] }
How do I escape comma's in an array
I try:
key[] = one, two, three
I get:
{
"key": [
"one",
"two",
"three"
]
}
But I want:
{
"key": [
"one, two, three"
]
}