问题描述
我想找到特定数字模式中的所有工件。
例如 - 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}/*" } }
]
}
}
}]
}
但是没有用
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)