Regular expressions are not natively supported in AEM Query Builder. However, you can still achieve some basic pattern matching using wildcards.
{
"path": "/content/mysite/en/",
"type": "cq:Page",
"property": "jcr:title",
"property.value": "page*",
"property.operation": "like"
}
In this ex...