Home > Java > JavaBase > body text

Java determines whether a character is a letter

angryTom
Release: 2019-11-11 15:02:18
Original
10533 people have browsed it

Java determines whether a character is a letter

java determines whether a character is a letter

1. First create a function check to receive a string

2. Then take the first character of the string. If it is in the range of a-z or A-Z, it is a letter, otherwise it is not

Recommended tutorial: java tutorial

 /**
     * 判断一个字符串是否为字母
     * @param fstrData
     * @return
     */
    public static boolean check(String fstrData) {
        char c = fstrData.charAt(0);
        if (((c >= &#39;a&#39; && c <= &#39;z&#39;) || (c >= &#39;A&#39; && c <= &#39;Z&#39;))) {
            return true;
        } else {
            return false;
        }
    }
Copy after login

Test:

public static void main(String[] args) {
    System.out.println(check("a")); // true
    System.out.println(check("1")); // false
}
Copy after login

The above is the detailed content of Java determines whether a character is a letter. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!