In the following two examples, I had hard time to understand why the outputs are different:
POST _analyze
{
"tokenizer": "standard",
"text": "mark.cuban"
}
terms produced: ["mark.cuban"]
POST _analyze
{
"tokenizer": "standard",
"text": "mark1.cuban"
}
terms produced: ["mark1","cuban"]
why the "." is treated as tokenizer in the second example, but not in the first?