I have a field as
author
Jason Pete
Jason Paul
Mike Yard
Jason Voorhies
in kibana 4.4 i am querying as
author:/Jason.*/
so i get all records for
Jason Pete
Jason Paul
Jason Voorhies
fine, now i want to do
author:/Jason P.*/
i expect
Jason Pete
Jason Paul
but i get
No Records found :(
what is wrong with my regex? Is there another way to specify the space character after Jason? I even tried
author:/Jason\sP.*/
but still no results