java – RegEx matching using Lucene

Lucene REGEX Cheat Sheet

This article is based on the Elastic Search Article

Written by Rebecca Berbel
Updated over a week ago

ab.*     # matchabcd     # no match

Lucene REGEX Cheat Sheet

This article is based on the Elastic Search Article

Written by Rebecca Berbel
Updated over a week ago

. ? + * | { } [ ] ( ) " \

Lucene REGEX Cheat Sheet

This article is based on the Elastic Search Article

Written by Rebecca Berbel
Updated over a week ago

ab...   # matcha.c.e   # match

Lucene REGEX Cheat Sheet

This article is based on the Elastic Search Article

Written by Rebecca Berbel
Updated over a week ago

a+b+        # matchaa+bb+      # matcha+.+        # matchaa+bbb+     # match

Lucene REGEX Cheat Sheet

This article is based on the Elastic Search Article

Written by Rebecca Berbel
Updated over a week ago

a*b*        # matcha*b*c*      # match.*bbb.*     # matchaaa*bbb*    # match

Read more here: Source link