我想找到特定数字模式中的所有工件。例如 - 4.80、5.60 等。换句话说 - <digit>.<digit><digit>
。
假设我的回购布局是:
<my_repo>
<dir1>
<dir2>
4.50
5.70
<dir5>
我试过了-
{
"files": [{
"aql": {
"items.find": {
"repo" : "my_repo",
"$and": [
{ "path": { "$match": "d{1}.d{2}" } }
]
}
}
}]
}
和 -
"files": [{
"aql": {
"items.find": {
"repo" : "webui_visr-release-local",
"$and": [
{ "path": { "$nmatch": "*/{1}.{2}.{2}/*" } }
]
}
}
}]
}
但它没有用