I am looking for a Regex which will enable me to find something like &dog= or &entropy= in a string, I tried something like
&+s*^[a-zA-Z]+s*=
believing that I could separate the things I want with the s* but that didn't work out so well, any help would be appreciated. Thanks!