Having a little issue with RegEx, I have the strings
AM.name:ASC,AMAdvanced.start:DESC,
AMAdvanced.start:DESC,AM.Genre:Action
and need to break them into
array(0){
AM.name => ASC,
AMAdvanced.start => DESC
}
and
array(0){
AMAdvanced.start => DESC,
AM.Genre => Action
}
Any help would be fantastic since completely new to regex