I have a very long line, where I would like to find all the links when they are followed by class="filelink"
A link could look like this
<a href="https://example.com/@api/files/123/=2008.pdf" class="filelink"
How is such a problem written as a Perl one-liner?
Update
If I do
echo '<a href="https://example.com/@api/files/123/=2008.pdf" class="filelink"' > test
perl -pe 's/href="(.*)" class="filelink"/\1/g' test
then I get
<a https://example.com/@api/files/123/=2008.pdf
where I would have expected
https://example.com/@api/files/123/=2008.pdf