我必须编写一些模式,这些模式将在用户输入时通过正则表达式用于匹配目的:
string pattern = "^.*overview\ of\ sales.*customer\ information.*$";
string input = "overview of sales with customer information";
有没有办法删除正则表达式中的词序?所以
string pattern = "^.*overview\ of\ sales.*customer\ information.*$";
还将匹配:
string input = "customer information with overview of sales";
这可能可以通过以相反的顺序编写每个模式来完成,但由于模式的数量很少,并且会随着时间和 * 的数量而增长。这往往是一种乏味的方式,所以请指导这件事。