我有大量的文件名,其中包括句点。这似乎将它们连成一个大词,并阻止使用TextCriteria搜索将其拾取。
例如/example/test.one.two.three.txt
,如果我搜索two
似乎没有被拾取,但是如果我有/example/test one two three.txt
搜索two
,则会返回文件。
我可以在.
上为查询设置分隔符吗?另外,我可以在保存到Mongo时拆分单词,但这看起来很混乱。目前,我正在使用非常简单的TextCriteria
:
TextCriteria textCriteria = new TextCriteria();
textCriteria.matchingAny(query);
有什么提示吗?