I have this string:
user__first=first; first__smth=smth; user__second=second; second__smth2=smth2
and I want some regex that matches for first__smth=smth;
or second__smth2=smth2
and I want it to match for things that do not only have these examples.
Sorry if it's easy or impossible, I'm very new to regex.