Search code examples
regexlogstash-grok

regex - Match filename with or without extension


Need a regex pattern to match all of the following:

hello
hello.
hello.cc

I tried \b\w+\.?\w+?\b, but this doesn't match "hello." (the second string mentioned above).


Solution

  • This is about as simple as I can get it:

    \b\w+\.?\w*
    

    See demo