条件逻辑字符串的解析和正则表达式
本文关键字:正则表达式 字符串 条件逻辑 | 更新日期: 2023-09-27 18:21:32
我必须标记一个条件字符串表达式:
算术运算符为=+、-、*、/、%
布尔运算符为=&;,||
条件运算符为===,>=,>,<lt;=<,!=
一个示例表达式是=(x+3>5*y)&;(z>=3||k!=x)
我想要的是标记这个字符串=运算符+操作数。
由于">"answers">="以及"="answers"!="[包含相同的字符串],我在标记化方面遇到了问题。
PS1:我不想做复杂的词汇分析。只是简单地解析如果可能的话,使用正则表达式。
PS2:或者换句话说,我寻找一个给定的正则表达式示例表达式wihout空白=
(x+3>5*y)&&(z>=3 || k!=x)
并将产生每个令牌,用空白区分隔,如:
( x + 3 > 5 * y ) && ( z >= 3 || k != x )
不是正则表达式,而是一个可能刚刚工作的基本标记化器(请注意,您不需要执行string.Join
-您可以通过foreach
使用IEnumerable<string>
):
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
static class Program
{
static void Main()
{
// and will produce each token is separated with a white space like : ( x + 3 > 5 * y ) && ( z >= 3 || k != x )
string recombined = string.Join(" ", Tokenize("(x+3>5*y)&&(z>=3 || k!=x)"));
// output: ( x + 3 > 5 * y ) && ( z >= 3 || k != x )
}
public static IEnumerable<string> Tokenize(string input)
{
var buffer = new StringBuilder();
foreach (char c in input)
{
if (char.IsWhiteSpace(c))
{
if (buffer.Length > 0)
{
yield return Flush(buffer);
}
continue; // just skip whitespace
}
if (IsOperatorChar(c))
{
if (buffer.Length > 0)
{
// we have back-buffer; could be a>b, but could be >=
// need to check if there is a combined operator candidate
if (!CanCombine(buffer, c))
{
yield return Flush(buffer);
}
}
buffer.Append(c);
continue;
}
// so here, the new character is *not* an operator; if we have
// a back-buffer that *is* operators, yield that
if (buffer.Length > 0 && IsOperatorChar(buffer[0]))
{
yield return Flush(buffer);
}
// append
buffer.Append(c);
}
// out of chars... anything left?
if (buffer.Length != 0)
yield return Flush(buffer);
}
static string Flush(StringBuilder buffer)
{
string s = buffer.ToString();
buffer.Clear();
return s;
}
static readonly string[] operators = { "+", "-", "*", "/", "%", "=", "&&", "||", "==", ">=", ">", "<", "<=", "!=", "(",")" };
static readonly char[] opChars = operators.SelectMany(x => x.ToCharArray()).Distinct().ToArray();
static bool IsOperatorChar(char newChar)
{
return Array.IndexOf(opChars, newChar) >= 0;
}
static bool CanCombine(StringBuilder buffer, char c)
{
foreach (var op in operators)
{
if (op.Length <= buffer.Length) continue;
// check starts with same plus this one
bool startsWith = true;
for (int i = 0; i < buffer.Length; i++)
{
if (op[i] != buffer[i])
{
startsWith = false;
break;
}
}
if (startsWith && op[buffer.Length] == c) return true;
}
return false;
}
}
如果您可以预定义要使用的所有运算符,那么这样的操作可能会对您有用。
请确保在正则表达式的前面放置双字符运算符,以便尝试匹配"<"在匹配'<='之前。
using System;
using System.Text.RegularExpressions;
public class Example
{
public static void Main()
{
string pattern = "!=|<=|>=|''|''||''&''&|''d+|[a-z()+''-*/<>]";
string sentence = "(x+35>5*y)&&(z>=3 || k!=x)";
foreach (Match match in Regex.Matches(sentence, pattern))
Console.WriteLine("Found '{0}' at position {1}",
match.Value, match.Index);
}
}
输出:
Found '(' at position 0
Found 'x' at position 1
Found '+' at position 2
Found '35' at position 3
Found '>' at position 5
Found '5' at position 6
Found '*' at position 7
Found 'y' at position 8
Found ')' at position 9
Found '&&' at position 10
Found '(' at position 12
Found 'z' at position 13
Found '>=' at position 14
Found '3' at position 16
Found '||' at position 18
Found 'k' at position 21
Found '!=' at position 22
Found 'x' at position 24
Found ')' at position 25