Php matching character link address method, matching link address _ PHP Tutorial

Source: Internet
Author: User
Php matches the link address in the character. Php matching character link address method. This article describes how to match the link address in php matching characters. Share it with you for your reference. The specific method is as follows: to determine a php matching character link address, match the link address

This article describes how to match the link address in php characters. Share it with you for your reference. The details are as follows:

To determine whether a string contains a hyperlink, the code is as follows:

The code is as follows:

$ Str = "ssdsfsdfsdfss ";
If (preg_match ("/] *> | ] *>/I ", $ str ))
{
Echo "this string has a hyperlink ";
}
Else
{
Echo "this string has no hyperlink mark ";
}
?>


Below we only need to filter the connection part, the code is as follows:

The code is as follows:

<? Php
Echo preg_replace ("/(? <= Href =) ([^>] *) (? =>)/I "," # "," Hello, click here to see you, click here to see ");
?>


Regular :/(? <= Href =) ([^>] *) (? => )/

(? <= Exp) match the position behind exp

(? = Exp) match the position before exp

This regular expression matches all non-">" characters before ">" after href =

Example: find these characters (URLs) and replace them with # to remove all links in html. now we share an instance that extracts Super connections. the code is as follows:

The code is as follows:

Function match_links ($ document ){
Preg_match_all ("' ] +) [^>] *>? (.*?) 'Isx ", $ document, $ links );
While (list ($ key, $ val) = each ($ links [2]) {
If (! Emptyempty ($ val ))
$ Match ['link'] [] = $ val;
}
While (list ($ key, $ val) = each ($ links [3]) {
If (! Emptyempty ($ val ))
$ Match ['link'] [] = $ val;
}
While (list ($ key, $ val) = each ($ links [4]) {
If (! Emptyempty ($ val ))
$ Match ['content'] [] = $ val;
}
While (list ($ key, $ val) = each ($ links [0]) {
If (! Emptyempty ($ val ))
$ Match ['all'] [] = $ val;
}
Return $ match;
}

I hope this article will help you with PHP programming.

Examples in this article describes how php matches the link address in characters. Share it with you for your reference. Details: Judge 1...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.