6.6.1 Lowercase, Uppercase
이 문서의 허가되지 않은 무단 복제나 배포 및 출판을 금지합니다. 본 문서의 내용 및 도표 등을 인용하고자 하는 경우 출처를 명시하고 김종민([email protected])에게 사용 내용을 알려주시기 바랍니다.
GET _analyze
{
"filter": [ "lowercase" ],
"text": [ "Harry Potter and the Philosopher's Stone" ]
}{
"tokens" : [
{
"token" : "harry potter and the philosopher's stone",
"start_offset" : 0,
"end_offset" : 40,
"type" : "word",
"position" : 0
}
]
}GET _analyze
{
"filter": [ "uppercase" ],
"text": [ "Harry Potter and the Philosopher's Stone" ]
}{
"tokens" : [
{
"token" : "HARRY POTTER AND THE PHILOSOPHER'S STONE",
"start_offset" : 0,
"end_offset" : 40,
"type" : "word",
"position" : 0
}
]
}Last updated