Created
April 14, 2022 11:16
-
-
Save quoeamaster/8bc3f943ea47f8103776474c8873cfe6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PUT courses-03/ | |
{ | |
"settings": { | |
"analysis": { | |
"char_filter": { | |
"email_dot_replacer": { | |
"type": "mapping", | |
"mappings": [ | |
". => -" | |
] | |
} | |
}, | |
"analyzer": { | |
"ana_email_fixer": { | |
"type": "custom", | |
"char_filter": [ "email_dot_replacer" ], | |
"tokenizer": "standard", | |
"filter": [ "lowercase" ] | |
}, | |
"email_extractor": { | |
"tokenizer": "uax_url_email", | |
"filter": [ "lowercase" ] | |
} | |
} | |
} | |
}, | |
"mappings": { | |
"properties": { | |
"comments": { | |
"type": "text", | |
"analyzer": "email_extractor", | |
"fields": { | |
"email": { | |
"type": "text", | |
"analyzer": "ana_email_fixer" | |
} | |
} | |
} | |
} | |
} | |
} | |
/* test */ | |
POST courses-03/_analyze | |
{ | |
"analyzer": "email_extractor", | |
"text": ["if you think the course is nice and wanna comment, please send an email to -> [email protected] or [email protected] . Thx~"] | |
} | |
... | |
/* result */ | |
{ | |
"tokens" : [ | |
{ | |
"token" : "if", | |
"start_offset" : 0, | |
"end_offset" : 2, | |
"type" : "<ALPHANUM>", | |
"position" : 0 | |
}, | |
... | |
{ | |
"token" : "[email protected]", | |
"start_offset" : 78, | |
"end_offset" : 97, | |
"type" : "<EMAIL>", | |
"position" : 15 | |
}, | |
... | |
{ | |
"token" : "[email protected]", | |
"start_offset" : 101, | |
"end_offset" : 126, | |
"type" : "<EMAIL>", | |
"position" : 17 | |
} | |
... | |
] | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment