I have a malformed URL like this: http://www.abc.com/?abc&?as&?blah
Now, I want to match (and eliminate) all "?" in the URL except the first one to make the URL clean. Is it possible using Regex? I tried positive look behind and other methods, but it didn't work for me.
PS: I need to do this regex operation in JavaScript