Home  >  Article  >  Java  >  How to determine whether a string contains English in java

How to determine whether a string contains English in java

王林
王林Original
2019-11-22 13:28:506962browse

How to determine whether a string contains English in java

1. Determine whether the string is all in English

boolean result = str.matches("[a-zA-Z]+");    //true:全文英文
str.matches("[a-zA-Z0-9]+")   //判断英文和数字

2. Extract all the English in the string

str = str.replaceAll("[^a-z^A-Z]", "");    //"[^a-z^A-Z]"改为"[^a-z^A-Z^0-9]"即获取所有的英文和数字

3. Determine the string Does it contain English

String regex = ".*[a-zA-z].*";
str.matches(regex);   //true:含有英文

Recommended tutorial: java introductory tutorial

The above is the detailed content of How to determine whether a string contains English in java. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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