条件查询mongodb-spring-boot-regex-pattern:从开始



我有一个字符串变量value="System Ram.*">,它将用于获取以System.Ram开头的任何属性(例如System.Ram.dell、System.Ram.intel等(

我想用这样的东西:

Criteria.where(property).regex(pattern_of_value)

有人能帮我吗?非常感谢。

Criteria.where(property).regex("^System.Ram");

或者使用以下(这里value是"System.Ram"(:

Criteria.where(property).regex("^" + value);

相关内容

  • 没有找到相关文章

最新更新