Hi,
I set up a filter to extract html files only but no one match with my code : ^https://[a-zA-Z0-9-._~:/?#@!$&'()*+,;=%]+.html$
Please help me.
Hi,
I set up a filter to extract html files only but no one match with my code : ^https://[a-zA-Z0-9-._~:/?#@!$&'()*+,;=%]+.html$
Please help me.
Hello @Jeremie31,
Welcome to the community.
Instead of setting a filter to go on the next module why don’t you extract only URLs which has .html as an extension?
Try this regular expression on Text parser directly which returns all the links which have “.html” at the end.
(https:\/\/[a-zA-Z0-9-._~:/?#@!$&'()*+,;=%]+\.html)
Proof of Expression: https://regex101.com/r/vyAxzA/1
I hope this helps you.
P.S.: Always search first, Check Make Academy. If this is helpful, Mark Best as Solutions
and give
If you need expert help or have questions? Contact or comment below!
Very good idea, you are right.
Thanks