W
wl
Hi,
I'm relatively new to Javascript and wanted to use the split function to
split a string into an array.
I need to split on every single occurence of = and &.
For example:
name=value&name2=another value with &&s and ==s
should be split in:
name
value
name2
another value with &&s and ==s
Thanks in advance,
Wim
I'm relatively new to Javascript and wanted to use the split function to
split a string into an array.
I need to split on every single occurence of = and &.
For example:
name=value&name2=another value with &&s and ==s
should be split in:
name
value
name2
another value with &&s and ==s
Thanks in advance,
Wim