Probably a simple solution but I am a beginner. I am trying to remove empty parameters from below string using regular expression.
Example:
amount=&country_code=¤cy=USD&price=&product_name=&service_id=082ca04e53fa0f0a53f283cf7e62cd&profile=&id=
Outcome would be:
currency=USD&service_id=082ca04e53fa0f0a53f283cf7e62cd
Thanks in advance!