0

好吧,我目前正在尝试将单词/文本放在这两件事之间

: 和 !

我试过这个

        Dim nick As String = String.Empty
        Dim p = ":(?<ircnick>.*?)!"
        Dim Matches = Regex.Matches(mail, p, RegexOptions.IgnoreCase Or RegexOptions.Singleline)
        If Matches IsNot Nothing AndAlso Matches.Count > 0 Then
            For Each Match As Match In Matches
                If Match.Groups("info").Success Then
                    nick = (Match.Groups("ircnick").Value)
                End If
            Next
        End If

它不显示任何内容。如果你们可以为我修复此代码,我会很高兴:D。

4

1 回答 1

0

根据本教程:!都是保留字。你试过逃避他们吗?

于 2010-05-31T22:41:30.983 回答