RKeys#deleteByPattern(String pattern)可以采用哪种模式?

时间:2016-06-29 14:28:45

标签: reddison

可以传递什么类型的模式?示例:正则表达式,通配符等。 我无法找到详细说明这个的java doc或其他文档。

1 个答案:

答案 0 :(得分:1)

根据javadoc in the source code

deleteByPattern支持这些glob样式模式:

 h?llo subscribes to hello, hallo and hxllo
 h*llo subscribes to hllo and heeeello
 h[ae]llo subscribes to hello and hallo, but not hillo