正则表达式

发布于 2024-11-09 12:56:36 字数 102 浏览 4 评论 0 原文

我创建了一个 asp.net 页面。该页面存在富文本区域和正则表达式验证器。我想检查富文本区域中是否包含 html span 标记。然后,我不知道如何在正则表达式验证器中编写表达式。请帮我。

I created a asp.net page. The rich text area and regular expression validator are existed in this page. I want to check the html span tag that is contained or not in the rich text area. And then, I don't know how to write expression in regular expression validator. Please, help me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迎风吟唱 2024-11-16 12:56:36

您可以使用以下正则表达式确定 ASP.NET 中是否存在带有 C#span 标记:

bool existsSpan = Regex.IsMatch(areaText, "<span[^>]*>");

它搜索 然后没有或一些不是 > 的字符,最后是 >

You can figure out if there's a span tag with C# in ASP.NET with the following regex:

bool existsSpan = Regex.IsMatch(areaText, "<span[^>]*>");

It searches for <span then none or some chars that is not >, and finally a >.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文