4

我正在尝试将以下字符串拆分"Name=='mynme' && CurrentTime<'2012-04-20 19:45:45'"为:

Name
==
'myname'
&&
CurrentTime
<
'2012-04-20 19:45:45'

我有以下正则表达式:

([+\\-*/%()]{1}|[=<>!]{1,2}|[&|]{2})

问题是使用上述正则表达式时,我得到以下结果:

Name
== 
'myname'
&&
CurrentTime 
<
'2012
-
04
-
20
19:45:45'

我实际上需要正则表达式来了解引用。

谢谢

更新 1 关于 lordcheeto 的回答:

你的反应很接近。但以下内容仍未正确拆分:

 string input2 = "((1==2) && 2-1==1) || 3+1==4 && Name=='Stefan+123'";

我需要做的是将字符串拆分为运算符和操作数。像这样的东西:

 LeftOperand Operator RightOperand

现在,如果有任何运算符介于''它之间,则应将其忽略,并且应将其之间的整个字符串''视为操作数。

上面的字符串应生成以下输出:

(

(
1
==
2
)

&&
2
-
1
==
1
)

||
3
+
1
==
4
&&
Name
==
'Stefan+123'
4

2 回答 2

3

好的,假设您希望它简单地拆分为逻辑和关系运算符,您可以使用以下模式:

string lordcheeto = @"\s*(==|&&|<=|>=|<|>)\s*";    

这还将从返回的字符串中删除所有空格。

代码:

using System;
using System.Text.RegularExpressions;

namespace RegEx
{
    class Program
    {
        static void Main(string[] args)
        {
            string original = "([+\\-*/%()]{1}|[=<>!]{1,2}|[&|]{2})";
            string lordcheeto = @"\s*(==|&&|<=|>=|<|>)\s*";

            string input = "Name=='mynme' && CurrentTime<45 - 4";
            string input1 = "Name=='mynme' && CurrentTime<'2012-04-20 19:45:45'";
            string ridiculous = "Name == BLAH && !@#>=$%^&*()< ASDF &&    this          >          that";

            executePattern("original", input, original);
            executePattern("lordcheeto's", input, lordcheeto);
            executePattern("original", input1, original);
            executePattern("lordcheeto's", input1, lordcheeto);
            executePattern("original", ridiculous, original);
            executePattern("lordcheeto's", ridiculous, lordcheeto);
        }

        static void executePattern(string version, string input, string pattern)
        {
            // Avoiding repitition for this example.
            Console.WriteLine("Using {0} pattern:", version);

            // Needs to be trimmed.
            var result = Regex.Split(input.Trim(), pattern);

            // Pipes included to highlight whitespace trimming.
            foreach (var m in result)
                Console.WriteLine("|{0}|", m);

            // Extra space.
            Console.WriteLine();
            Console.WriteLine();
        }
    }
}

测试:

http://goo.gl/XAm6J

输出:

Using original pattern:
|Name|
|==|
|'mynme' |
|&&|
| CurrentTime|
|<|
|45 |
|-|
| 4|


Using lordcheeto's pattern:
|Name|
|==|
|'mynme'|
|&&|
|CurrentTime|
|<|
|45 - 4|


Using original pattern:
|Name|
|==|
|'mynme' |
|&&|
| CurrentTime|
|<|
|'2012|
|-|
|04|
|-|
|20 19:45:45'|


Using lordcheeto's pattern:
|Name|
|==|
|'mynme'|
|&&|
|CurrentTime|
|<|
|'2012-04-20 19:45:45'|


Using original pattern:
|Name |
|==|
| BLAH |
|&&|
| |
|!|
|@#|
|>=|
|$|
|%|
|^&|
|*|
||
|(|
||
|)|
||
|<|
| ASDF |
|&&|
|    this          |
|>|
|          that|


Using lordcheeto's pattern:
|Name|
|==|
|BLAH|
|&&|
|!@#|
|>=|
|$%^&*()|
|<|
|ASDF|
|&&|
|this|
|>|
|that|

编辑

好的,有了额外的约束,你应该可以使用这个:

string lordcheeto = @"\s*('.*?'|&&|==|<=|>=|<|>|\(|\)|\+|-|\|\|)\s*";

这仍然会从返回的字符串中删除所有空格。但是,如果匹配项彼此相邻(例如Name=='Stefan+123'),它将返回空字符串。这次我无法解决这个问题,但这并不重要。

如果您导入System.LinqandSystem.Collections.Generic并使结果为 a List<string>,您可以像这样从额外的一行中删除所有空字符串List(这比使用直接 for 循环要慢):

var results = Regex.Split(input.Trim(), pattern).ToList();
results.RemoveAll(x => x == "");

代码:

using System;
using System.Text.RegularExpressions;

namespace RegEx
{
    class Program
    {
        static void Main(string[] args)
        {
            string lordcheeto = @"\s*('.*?'|&&|==|<=|>=|<|>|\(|\)|\+|-|\|\|)\s*";

            string input = "Name=='mynme' && CurrentTime<45 - 4";
            string input1 = "Name=='mynme' && CurrentTime<'2012-04-20 19:45:45'";
            string input2 = "((1==2) && 2-1==1) || 3+1==4 && Name=='Stefan+123'";

            executePattern("lordcheeto's", input, lordcheeto);
            executePattern("lordcheeto's", input1, lordcheeto);
            executePattern("lordcheeto's", input2, lordcheeto);

            Console.ReadLine();
        }

        static void executePattern(string version, string input, string pattern)
        {
            // Avoiding repitition for this example.
            Console.WriteLine("Using {0} pattern:", version);

            // Needs to be trimmed.
            var result = Regex.Split(input.Trim(), pattern);

            // Pipe included to highlight empty strings.
            foreach (var m in result)
                Console.WriteLine("|{0}", m);

            // Extra space.
            Console.WriteLine();
            Console.WriteLine();
        }
    }
}

测试:

http://goo.gl/lkaoM

输出:

Using lordcheeto's pattern:
|Name
|==
|
|'mynme'
|
|&&
|CurrentTime
|<
|45
|-
|4


Using lordcheeto's pattern:
|Name
|==
|
|'mynme'
|
|&&
|CurrentTime
|<
|
|'2012-04-20 19:45:45'
|


Using lordcheeto's pattern:
|
|(
|
|(
|1
|==
|2
|)
|
|&&
|2
|-
|1
|==
|1
|)
|
|||
|3
|+
|1
|==
|4
|&&
|Name
|==
|
|'Stefan+123'
|

补充评论:

如果您还想拆分任何其他运算符(例如 , <<, +=, =, -=>>(有很多),或者需要其他任何东西,请询问。

于 2012-04-21T04:35:21.490 回答
1

感谢“lordcheeto”的回答,我能够用您的解决方案解决类似的问题。我正在分享我的问题和解决方案,以防万一帮助有类似问题的人。

我必须像这样拆分字符串

"abc < 1 && 124 > 2 || 1243 <= 555";

先入

abc < 1
&&
124 > 2
||
1243 <= 555

我已经通过使用实现了这一点

string[] condtions = Regex.Split(str, @"\s*('.*?'|&&|\|\|)\s*");

然后我必须拆分每个条件

abc < 1 

进入

abc
<
1

我通过使用实现了这一点

string[] statements = Regex.Split(condtions[0], @"\s*('.*?'|==|<=|>=|<|>|!=)\s*");
于 2013-12-13T06:17:33.123 回答