带有正则表达式错误的单选按钮列表值

发布于 2024-11-17 01:56:08 字数 967 浏览 3 评论 0原文

我正在尝试删除所有 html 标签,主要是从单选按钮列表项的值部分删除。如果没有正则表达式,它可以工作,但会导致其他错误。这是我所拥有的,但它给出的错误是:对象引用未设置到对象的实例。 System.NullReferenceException:未将对象引用设置为对象的实例。 rad.DataValueField = myStr.stripHTML(ds.Tables("session_name").ToString) 任何建议赞赏。

这是我的代码:

  Dim rad As RadioButtonList = New RadioButtonList()
  rad.ID = "rad" + i.ToString()
  rad.DataSource = ds.Tables("conSessions")
  rad.DataTextField = ds.Tables("conSessions").Columns("session_name").ToString
  rad.DataValueField = myStr.stripHTML(ds.Tables("session_name").ToString)
  rad.DataBind()
  rad.DataBind()
  rad.SelectedIndex = 0
  phConcurrent.Controls.Add(rad)

Public Function stripHTML(ByVal e As String) As String
    If (e = String.Empty) Or (IsDBNull(e) = True) Then
       Return ""
    Else
       Return System.Text.RegularExpressions.Regex.Replace(e, "<[^>]*>", "", RegexOptions.IgnoreCase Or RegexOptions.Multiline)
    End If
End Function

I'm trying to remove any html tags, mainly from the value piece of a radiobuttonlist item. Without the regex, it works, but causes other errors. Here's what I have, but the error it gives is: Object reference not set to an instance of an object. System.NullReferenceException: Object reference not set to an instance of an object. rad.DataValueField = myStr.stripHTML(ds.Tables("session_name").ToString) Any advice appreciated.

Here's my code:

  Dim rad As RadioButtonList = New RadioButtonList()
  rad.ID = "rad" + i.ToString()
  rad.DataSource = ds.Tables("conSessions")
  rad.DataTextField = ds.Tables("conSessions").Columns("session_name").ToString
  rad.DataValueField = myStr.stripHTML(ds.Tables("session_name").ToString)
  rad.DataBind()
  rad.DataBind()
  rad.SelectedIndex = 0
  phConcurrent.Controls.Add(rad)

Public Function stripHTML(ByVal e As String) As String
    If (e = String.Empty) Or (IsDBNull(e) = True) Then
       Return ""
    Else
       Return System.Text.RegularExpressions.Regex.Replace(e, "<[^>]*>", "", RegexOptions.IgnoreCase Or RegexOptions.Multiline)
    End If
End Function

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

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

发布评论

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

评论(1

So要识趣 2024-11-24 01:56:08

我想问题不在于正则表达式。可能您试图在这里获取错误的表:

ds.Tables("session_name").ToString

您确定需要具有此名称而不是名称“conSessions”的表吗?

I suppose the problem is not in regex. Possibly you're trying to get wrong table here:

ds.Tables("session_name").ToString

Are you sure that you need table with this name and not with name "conSessions" ?

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