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