Extract external URL Parameters

Hey Guys,

I want to extract the Parameters from an URL LinkedIn Login, Sign in | LinkedIn)&titleFreeText=ceo

Tried with Regex but i didnt get the right results. Any Recommendations?

Url:split by?:last item:split by &:filtered (contain keyname):split by =:last item

1 Like

@Jici’s technique should work fine. If you need/prefer to use regex for whatever reason, here’s a starting point: (?<=titleFreeText=).*?(?=(&|$))

1 Like

This topic was automatically closed after 70 days. New replies are no longer allowed.