我想用通配符(*)匹配字符串,其中通配符表示“any”。例如:

*X = string must end with X
X* = string must start with X
*X* = string must contain X

另外,一些复合用途例如:
*X*YZ* = string contains X and contains YZ
X*YZ*P = string starts with X, contains YZ and ends with P.

有一个简单的算法可以做到这一点吗?我不确定使用正则表达式(尽管有可能)。

为了清楚起见,用户将在上面的过滤器框中键入内容(尽可能简单的过滤器),我不希望他们自己编写正则表达式。因此,我可以轻松地从上述表示形式进行转换将是一件好事。

最佳答案

仅供引用,您可以使用VB.NET Like-Operator:

string text = "x is not the same as X and yz not the same as YZ";
bool contains = LikeOperator.LikeString(text,"*X*YZ*", Microsoft.VisualBasic.CompareMethod.Binary);

如果要忽略大小写,请使用CompareMethod.Text

您需要添加using Microsoft.VisualBasic.CompilerServices;

关于c# - 用通配符匹配字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30299671/

10-11 22:35