我有一种情况,我需要在 VS 项目中搜索任何没有定义 MaxLength 属性的控件。
例如:
<asp:TextBox ID="txtName" runat="server" MaxLength="50" Text="Enter Name" />
<asp:TextBox ID="txtOther" MaxLength="25" runat="server" />
<asp:TextBox ID="MaxLength" runat="server" />
<asp:TextBox ID="txtMisc" runat="server" Width="100" />
有没有人建议使用正则表达式模式来查找未定义 MaxLength 的控件?
我的第一次尝试似乎有效,但充其量似乎并不完美......
<asp:TextBox.*?M(?!axLength=).*?/>
我很想看到一个更好的解决方案。
注意:Visual Studio 搜索阻塞了我上面的模式。我被迫使用不同的应用程序来实际使用这种模式进行搜索