반응형
Java, Full 한글 판별 코드 |
Full 한글이라 하면, ㅈ ㅇ ㅏ ㅗ 와 같은 완성되지 않은 한글이 아닌,
감. 자. 가. 갈 등과 같이 조합이 완성한 한글을 이야기한다.
이는 character 당 ascii code 로 판별이 가능하다.
return ch >= 0xAC00 && ch <= 0xD7AF;
반응형
'프로그래밍 놀이터 > 안드로이드, Java' 카테고리의 다른 글
[android] Google Map V2 manifest 설정 (0) | 2013.10.24 |
---|---|
[android] addToBackStack( String name ) 뭐하는 녀석이냐? (0) | 2013.10.23 |
[android] apply different colors on the texts in the textview using xml (0) | 2013.10.21 |
[android] how can I detect if notification clear button is clicked? (0) | 2013.10.16 |
[android] at GingerBread device GCM register returns SERVICE_NOT_AVAILABLE (4) | 2013.10.15 |
댓글