Closed GoogleCodeExporter closed 8 years ago
其实现在的标题关键字屏蔽功能可以做到只显示含有特定关��
�字的新鲜事
不过写法稍微复杂点
比如你想只显示标题包含123的新鲜事,就写下面这行
^((?!123).)*$
再比如你想只显示标题包含123或者234的新鲜事,就写下面这��
�
^((?!123|234).)*$
总之,写成^((?!XXX).)*$这种形式就行,多个关键字之间用|隔开
所以不会专门增加一个新功能
Original comment by xnrefor...@gmail.com
on 17 Feb 2011 at 12:12
Original comment by xnrefor...@gmail.com
on 17 Feb 2011 at 12:12
Original issue reported on code.google.com by
liuwenyi...@gmail.com
on 15 Feb 2011 at 9:47