I'm sure I should not post this here but since I had not find any forum for search problems, I'm posting it here.My problem is almost simple:Situation:I'm trying to search on the file extension of objects coming from both the enterprise AND spiders volumes.Problems:1- The filename field doesn't exist on spider volumes2- The OTURL field doesn't always contain the filename (for example,
http://www.google.com/). The real URL seems to be always passed in the Content-Location: response header's field. Would it be possible to retrieve this information somehow?3- I may have to search on many file extensions at the same time4- It seems like the search is looking at one word at a time when using QLREGEX so I can't use with certitude a syntax like jpg$ niether \.jpg and even less \.jpg$Current but not viable solution:I've come up with this syntax but this is imprecise and really long(OTName:QLREGEX "^(gif|jpg)$")|(OTFileName:QLREGEX "^(gif|jpg)$")|(OTURL:QLREGEX "^(gif|jpg)$")As you can see, I made many tests already but had not find anything really making the job.Thanks for your help!