English 中文(简体)
如何更新正则, 以免在声明或( ) 中考虑顺序, 或如何效仿 :
原标题:How to update a regex to not consider order in an or ( | ) statement or how to emulate:
  • 时间:2012-05-23 19:40:46
  •  标签:
  • php
  • regex

此正方形

(<links+)((rel="[Ii]con"s+)|(rel="[Ss]hortcut [Ii]con"s+))(href="(.+)")(.+)/>

工 工 工 工 工 工 工

<link rel="icon" href="http://passets-cdn.pinterest.com/images/favicon.png" type="image/x-icon" />
<link rel="shortcut icon" href="http://css.nyt.com/images/icons/nyt.ico" />
<link rel="shortcut icon" href="http://cdn.sstatic.net/careers/Img/favicon.ico?36da6b" />
<link rel="Shortcut Icon" href="/favicon.ico" type="image/x-icon" />

而非用于 href 和 rel 属性被切换的位置 :

  <link href="/phoenix/favicon.ico" rel="shortcut icon" type="image/x-icon" />

我怎样才能更新它,以便不下令做口供或口供?

因此,

aa || bb

工作与工作一样

bb || aa

在此测试 :

http://regexpal.com/" rel="nofollow" >http://regexpal.com/

我只想从Favicon标签上拉开路径... 我选择不使用图书馆

Stema s 以不同形式回答:

<links+
    (
        ?=[^>]*rel="
        (
            ?:[Ss]hortcuts
        )
        ?[Ii]con"s+
    )
    (
        ?:[^>]*href="
        (
            .+?
        )"
    ).*
/>
最佳回答

你可以用正面的眼光来做

<links+(?=[^>]*rel="(?:[Ss]hortcuts)?[Ii]con"s+)(?:[^>]*href="(.+?)").*/>

"http://regexr.com?31202" rel="no follow">这里的Regexr

您将在第一个捕捉组中找到路径 。

这里的问题是, 外观头没有匹配任何东西。 所以您可以检查标签内是否有 < code> rel=" (? : [ss] hortcuts)? [I]con] ? 如果找到这个模式, 它将会匹配 href 部分, 并将链接放入捕捉组 1 。

(? =[\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\

[gt;] 是否定的字符类, 与任何字符匹配, 但与 相对应。 我用它来确保它不会通过标签的关闭

问题回答

您不能, 而不是一个正则表达式 。 事实上, 您可以, 但其实不值得, 最终您会遇到一个无法读取的正则混杂 。

匹配 / < links ([gt;]+rel="(shortcuts+)? icon" [gt;] *) & gt; /i , 然后匹配被捕获的部分 /shref=" ([]+)"/i

您可以使用一个正则来定位图标标记,而用第二个正则来拉动路径。

如果您第二个正gex 剖面符的唯一文本是单个标签, 它可以简单到 /href=" (.+)" / , 而标签内属性的顺序将无关紧要 。

我建议使用PHPs < a href="http://php.net/manual/en/book.sprompexml.php" rel=“nofollow”>SproXML 。

$html =  <link href="/phoenix/favicon.ico" rel="shortcut icon" type="image/x-icon" /> ;
$xml = new SimpleXMLElement($html);
echo $xml->attributes()->href;




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...