如何访问正则表达式语句中的变量?时间:2019-04-14 标签:c#4.0

发布于 2024-12-10 07:22:18 字数 646 浏览 2 评论 0原文

我已经到处寻找,但我一生都无法弄清楚如何使正则表达式语句中的变量可以从其他地方访问。

如果有人能提供帮助那就太棒了! 这是代码:

string strRegex = @"(regexstring)";

        RegexOptions myRegexOptions = RegexOptions.Multiline;
        Regex myRegex = new Regex(strRegex, myRegexOptions);
        string strTargetString = str9

        foreach (Match myMatch in myRegex.Matches(strTargetString))
        {
            if (myMatch.Success)
            {

这是问题 --> 。 。 ...................... 字符串 str5 = myMatch.ToString();

            }

webBrowser1.navigate(str5); <-- 这不起作用

如何访问字符串 str5?在循环之外?请帮忙

I have looked everywhere, but I cannot for the life of me figure out how to make a variable inside a regex statement be accessible from elsewhere.

If someone could help that would be amazing!
Here is the code:

string strRegex = @"(regexstring)";

        RegexOptions myRegexOptions = RegexOptions.Multiline;
        Regex myRegex = new Regex(strRegex, myRegexOptions);
        string strTargetString = str9

        foreach (Match myMatch in myRegex.Matches(strTargetString))
        {
            if (myMatch.Success)
            {

Here is the problem --> . . ..................
string str5 = myMatch.ToString();

            }

webBrowser1.navigate(str5); <-- This doesnt work

How Do I access the string str5? outside of the loop? Please Help

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

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

发布评论

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

评论(2

腻橙味 2024-12-17 07:22:18

如果您想在循环外部访问变量,则需要在循环外部声明该变量。但是,您随后需要考虑:

  • 如果没有任何匹配项,您希望发生什么?
  • 如果有多个匹配项,您希望发生什么?

您需要在循环外为其分配一个变量,否则当您尝试读取该变量时,编译器会抱怨,因为它没有明确分配。

If you want to access the variable outside the loop, it needs to be declared outside the loop. However, you then need to consider:

  • What do you want to happen if there weren't any matches?
  • What do you want to happen if there were multiple matches?

You'll need to assign a variable to it outside the loop as otherwise when you try to read the variable, the compiler will complain because it's not definitely assigned.

最笨的告白 2024-12-17 07:22:18

也许你想要:

string str5 = myMatch.Value;
webBrowser1.navigate(str5);

Perhaps you want:

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