Android Char Value Check isLatin(char c)

Here you can find the source of isLatin(char c)

Description

is Latin

Declaration

public static boolean isLatin(char c) 

Method Source Code

//package com.java2s;

public class Main {
    public static boolean isLatin(char c) {
        return (0x41 <= c && c <= 0x5A) || (0x61 <= c && c <= 0x7A);
    }/*from   w  w  w. j  a  va2  s  . c  o  m*/
}

Related

  1. displayWidth(char ch)
  2. getCharType(char c)
  3. isAlef(char c)
  4. isArabic(char c)
  5. isHah(char c)
  6. isNumber(char c)
  7. isTashekil(char c)
  8. isTatweel(char c)
  9. isYeh(char c)