Hi,
i am not sure if i understand your question. but in the list of documents, the requirement is to support regular expression / full / wildcard searches.
The regular expression are perfectly working fine, if we construct like this. [a-z]{1,3}# {1,}^[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}^0-9((^[0-9].[0-9]+){1,}).
But i realized, users are currently having perl based regular expression. so the equivalent perl regex for the above java regex is below. which is not working
[a-z]{3}#\s([x,0-9,H,N,L,^,-]){1,}^\d{2}:\d{2}:\d{2}^\d*((^\d+){1,})((^\d.\d+){1,})
From users perspective, both the regex (Java/perl) are same and they are expecting results for both.
[a-z]{1,3}# {1,}^[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}^0-9((^[0-9].[0-9]+){1,}). (java regex)
[a-z]{3}#\s([x,0-9,H,N,L,^,-]){1,}^\d{2}:\d{2}:\d{2}^\d*((^\d+){1,})((^\d.\d+){1,}) (equivalent perl)