<a id='my' href="index.html" title="click">Click</a>
<a id='my' href='index.html' title="click">Click</a>
<a id='my' href=index.html title="click">Click</a>带空格的地址
<a id='my' href="index 2.html" title="click">Click</a>

解决方案 »

  1.   

    样本
    <a id='my' href="index.html" title="click">Click</a>
    <a id='my' href='index.html' title="click">Click</a>
    <a id='my' href=index.html title="click">Click</a>
    <a id='my' href="index 2.html" title="click">Click</a>正则
    href=((["|']{1})[\w\. ]+(\2)|([\w\.]+))结果
    href="index.html"   is   match
    Group[0]=href="index.html"
    Group[1]="index.html"
    Group[2]="
    Group[3]="
    Group[4]=
    href='index.html'   is   match
    Group[0]=href='index.html'
    Group[1]='index.html'
    Group[2]='
    Group[3]='
    Group[4]=
    href=index.html   is   match
    Group[0]=href=index.html
    Group[1]=index.html
    Group[2]=
    Group[3]=
    Group[4]=index.html
    href="index 2.html"   is   match
    Group[0]=href="index 2.html"
    Group[1]="index 2.html"
    Group[2]="
    Group[3]="
    Group[4]=
      

  2.   


    这位YuNa123 (于娜)
    小姐经常发一些
    自称"小女子"的帖子
      

  3.   

    blackant2(乔峰)  这位YuNa123 (于娜)
    小姐经常发一些
    自称"小女子"的帖子----------------------------我什么时候发过自称“小女子”的帖子了???奇怪
      

  4.   

    在google中查"于娜 小女子"小女子先睡了
    http://topic.csdn.net/t/20040821/23/3297523.html
    小女子不懂
    http://topic.csdn.net/t/20060204/16/4539579.html应该不止这些
      

  5.   

    在google中查"于娜 小女子"  ?蒙,没啥说的!blackant2(乔峰) ,就凭这句话,以后只要是我发的帖子,你去了就有分。
      

  6.   

    关键是不带引号 的连接难匹配桥风能不能写完整点? 用 C#中的方法。
     
    <a id='my' href=index.html title="click">Click</a>