Consider the following set:
2017.16, 2017.16.a, 2017.16.b, 2017.167
I am trying to use a regular expression to search my azure index and return: 2017.16.a, 2017.16.b
using the following as my query:
accession_number:/2017\.16\.*/
returns three documents: 2017.16, 2017.16.a, 2017.16.b
How can I change the regular expression to only include the .a and .b records?