Word boundary in Lucene regex

前端 未结 1 1991
悲&欢浪女
悲&欢浪女 2020-12-11 20:05

I\'d like to a make a regex query in Elastisearch with word boundaries, however it looks like the Lucene regex engine doesn\'t support \\b. What workarounds can

相关标签:
1条回答
  • 2020-12-11 20:20

    In ElasticSearch regex flavor, there is no direct equivalent to a word boundary. Initial \b is something like (^|[^A-Za-z0-9_]) if the word starts with a word char, and the trailing \b is like ($|[^A-Za-z0-9_]) if the word ends with a word char.

    Thus, we need to make sure that there is a non-word char before and after word or start/end of string. Since the regex is anchored by default, all we need to make [^A-Za-z0-9_] optional at start/end of string is add .* beside and wrap with an optional grouping construct:

    (.*[^A-Za-z0-9_])?word([^A-Za-z0-9_].*)?
    

    Details

    • (.*[^A-Za-z0-9_])? - either start of string or any 0+ chars (but a line break char, else use (.|\n)*) and then any char but a word char (basically, it is start of string followed with 1 or 0 occurrences of the pattern inside the group)
    • word - a word
    • ([^A-Za-z0-9_].*)? - an optional sequence of any char but a word char followed with any 0+ chars, followed by the end of string position (implicit in Lucene regex).
    0 讨论(0)
提交回复
热议问题