正则表达式匹配除特定匹配之外的模式

时间:2017-07-21 22:18:05

标签: c# regex regex-negation

我正在尝试使用RegEx从HTML响应中提取名称。到目前为止我能够这样做,除了我得到的东西比我需要的多,我想不匹配特定的字符串,如“Date”或“Today”。

这是我的正则表达式:

<li class="rcbItem">([^:()]{1,20})<\/li>

以下是我正在运行该模式的HTML响应的一部分:

            <div class="rcbSlide" style="z-index:6000;">
                <div id="ctl07_ddInspector_DropDown" class="RadComboBoxDropDown RadComboBoxDropDown_Default " style="float:left;display:none;">
                    <div class="rcbScroll rcbWidth" style="width:100%;">
                        <ul class="rcbList" style="list-style:none;margin:0;padding:0;zoom:1;">
                            <li class="rcbItem">...Default Inspector (if any)</li>
                            <li class="rcbItem">Andy Schene</li>
                            <li class="rcbItem">gilberto hubner</li>
                            <li class="rcbItem">Jim Tinner</li>
                            <li class="rcbItem">Kenneth Donovan</li>
                            <li class="rcbItem">RENTAL REG INSPECTORS</li>
                            <li class="rcbItem">Rob Barker</li>
                            <li class="rcbItem">Robert Costello</li>
                            <li class="rcbItem">Ryan BalFour</li>
                            <li class="rcbItem">Sean Angeley</li>
                            <li class="rcbItem">Krissy King</li>
                        </ul>
                    </div>
                </div>
            </div>
            <input id="ctl07_ddInspector_ClientState" name="ctl07_ddInspector_ClientState" type="hidden" />
        </div>
        <span id="ctl07_lblInspector" class="pnlData"/>
    </td>
</tr>
<tr>
    <td>
        <span id="ctl07_lblSetDefaultLabel" class="pnlLabelLight">Set Default</span>
    </td>
    <td>
        <div id="ctl07_ddSetDefault" class="RadComboBox RadComboBox_Default pnlDD" style="width:175px;">
            <table summary="combobox" border="0" style="border-width:0;border-collapse:collapse;table-layout:fixed;width:100%">
                <tr class="rcbReadOnly">
                    <td class="rcbInputCell rcbInputCellLeft" style="margin-top:-1px;margin-bottom:-1px;width:100%;">
                        <input name="ctl07$ddSetDefault" type="text" class="rcbInput radPreventDecorate" id="ctl07_ddSetDefault_Input" value="Next Day (Default)" style="display: block;" readonly="readonly" />
                    </td>
                    <td class="rcbArrowCell rcbArrowCellRight" style="margin-top:-1px;margin-bottom:-1px;">
                        <a id="ctl07_ddSetDefault_Arrow" style="overflow: hidden;display: block;position: relative;outline: none;">select</a>
                    </td>
                </tr>
            </table>
            <div class="rcbSlide" style="z-index:6000;">
                <div id="ctl07_ddSetDefault_DropDown" class="RadComboBoxDropDown RadComboBoxDropDown_Default " style="float:left;display:none;">
                    <div class="rcbScroll rcbWidth" style="width:100%;">
                        <ul class="rcbList" style="list-style:none;margin:0;padding:0;zoom:1;">
                            <li class="rcbItem">Next Day (Default)</li>
                            <li class="rcbItem">Today</li>
                            <li class="rcbItem">Specified Date</li>
                            <li class="rcbItem">Next Available (Insp Cap)</li>
                            <li class="rcbItem">No Specified Date</li>
                        </ul>
                    </div>
                </div>
            </div>

我知道负面的前瞻和其他帖子:Regex that matches a pattern and doesn't match specific words。但我无法为我做这项工作。以下内容仍会带回不需要的匹配项:

<li class="rcbItem">((?!Date$)[^:()]{1,20})<\/li>

3 个答案:

答案 0 :(得分:2)

  1. 您不希望Date$因为$表示“这是字符串的最后一部分。”
  2. 由于您的示例显示包含“日期”的不需要的字符串使其显示在</li>之前,您希望将负面的外观放在那里,而不是更早。
  3. 现在,既然你想向后看以寻找日期,你需要一个后视,而不是前瞻。 (在<)中间添加?!
  4. 这最终看起来像:

    <li class="rcbItem">([^:()]{1,20})(?<!Date)<\/li>
    

    如果您还尝试删除“今日”条目,请将其设为Today|Date

    <li class="rcbItem">([^:()]{1,20})(?<!Today|Date)<\/li>
    

    P.S。:你真的需要在开始时检查所有空白吗?

答案 1 :(得分:1)

由于“日期”或“今天”的位置未修复, 所以这是我的建议:

string[] filter = {"date","today"};
var result = Regex.Matches(yourhtml,"(?i) <li class=\"rcbItem\">([^:()]{1,20})<\/li>")
.Cast<Match>()
.Where(m=>!filter.Any(f=>m.Groups[1].Value.ToLower().Contains(f)));

答案 2 :(得分:0)

您无法使用$,因为它表示整个字符串的结尾。

试试这个:

<li class="rcbItem">((?!(.)*(Date|Today))[^:()]{1,20})<\/li>