Posts by Rafael Ribeiro • 1 point
1 post
-
-2
votes2
answers326
viewsA: Regex to capture links from sites specific to an HTML page
Hello! As your goal is to get only the links, without manipulating the rest of the html content, I believe the regex below can help you: \"(http(s?)://.*?)\" Since you are searching for the link…