I would like to split string if & character is showing but it must ignore the split if & shows in the beginning of the string. example '&hello=world&hi=usa' would be
key: &hello, value: world
key: hi, value: usa
if i use split('&') it will create empty key and value because of the first &