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?
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
@Jici’s technique should work fine. If you need/prefer to use regex for whatever reason, here’s a starting point: (?<=titleFreeText=).*?(?=(&|$))
This topic was automatically closed after 70 days. New replies are no longer allowed.