Hello i was wondering how can I parse or take only the name (tagname) from this link?
Hi @anthony9
You can use a Regex pattern to extract the name from the URL. The pattern you need is: (?<=https:\/\/www\.linkedin\.com\/in\/)[^\/]+
. This pattern will match the portion of the URL after “https://www.linkedin.com/in/” and before the next “/”.
Hope this helps.
1 Like
Thankyou!!!