Michael Herger wrote:
>
> Hi!
>
> I often want to filter the logs by date, eg. "Feb 20" to only
> show today's entries. But as the "viewlogfiles" script does
> not accept whitespace in a search expression, this is
> impossible.
Hi Michael,
The pattern is Feb 20, I found that using any of the following allowed a limited search on SME 5.1.2
Feb.20 # . will match any character except line breaks.
Feb\D20 # \D will match any non-digit
Feb\W20 # \W will match any non-word character
This should help,
Regards,
Paul