Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the regular expressions that match URL

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article will explain in detail what are the regular expressions for matching URLs. Xiaobian thinks it is quite practical, so share it with you as a reference. I hope you can gain something after reading this article.

A regular expression describes a pattern of string matching, which can be used to check whether a string contains a certain substring, replace a matching substring, or extract a substring from a string that meets a certain condition.

Then the expression:

var match = /^((ht|f)tps?):\/\/ [\w\-]+(\. [\w\-]+)+([\w\-\.,@?^=%&:\/~\+#]* [\w\-\@?^=%&\/~\+#])?$/;

Match:

(1), directly match domain name address:

var matchString = 'https://i.cnblogs.com/';console.log(match.test(matchString)); // ==> true

(2), matching links containing (*.htm,*.html,*.php,*.aspx...) Address of suffix:

var matchString = 'https://i.cnblogs.com/EditPosts.aspx';console.log(match.test(matchString)); // ==> true

(3), matching address with parameters:

var matchString = 'https://i.cnblogs.com/EditPosts.aspx? opt=1';console.log(match.test(matchString)); // ==> true

Instructions for use:

(1)The address must start with http/https/ftp/ftps;

(2)Address cannot contain two-byte symbols or non-linked special characters.

About "what are the regular expressions matching URL" this article is shared here, I hope the above content can be of some help to everyone, so that you can learn more knowledge, if you think the article is good, please share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report