Question
I read
HowToListOnlyNewTopics and use that, but in addition I was wondering how to list topics modified but not new. I tried various regular expressions to match everything but 1.1 from the META:TOPICINFO version field, to no avail. What I'm really looking for is a negation. Almost grep -v META:TOPICINFO.*version=\"1.1\". Any pointers much appreciated.
Environment
--
IsaiahWeiner - 24 Sep 2003
Answer
A negative search is currently not possible, but you can do an exclude search:
%SEARCH{ "[%]META:TOPICINFO.*version=\"1.([2-9]|1[0-9]+)\"" regex="on" format="|$topic|$rev|" }%
Returns this: (limited to the first 20 entries)
Search:
[%]META:TOPICINFO.*version="1.([2-9]|1[0-9]+)"
Number of topics: 20
--
PeterThoeny - 25 Sep 2003
Thanks!!! That's much closer than what I used. This seems to be the last modification needed: 1.([2-9]+|1[0-9]+).
--
IsaiahWeiner - 29 Sep 2003