Java逻辑代码判断字数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java逻辑代码判断字数相关的知识,希望对你有一定的参考价值。

package cn.com.f_young.erp.util;

public class WorldTrueCount {
/**
* 判断中文和标点符号的逻辑代码
* @param value
* @return
*/
public static int String_length_chinese(String value) {
int valueLength = 0;
String chinese = "[\u4e00-\u9fa5]";
String english = "[a-zA-Z]";
for (int i = 0; i < value.length(); i++) {
String temp = value.substring(i, i + 1);
if(temp.equals(" ")){
valueLength+=0;
}else if (temp.matches(chinese)) {
valueLength += 1;
}else if(temp.matches(english)) {
valueLength += 0;
}else{
valueLength += 1;
}
}
return valueLength;
}
/**
* 判断英文的逻辑代码
* @param value
* @return
*/
public static int String_length_english(String value) {
int valueLength = 1;
String chinese = "[\u4e00-\u9fa5]";
String english = "[a-zA-Z]";
int k=0;
for (int i = 0; i < value.length(); i++) {
String temp = value.substring(i, i + 1);
if(temp.equals(" ")){
if(k==1){
valueLength+=1;
k=0;
}
valueLength+=0;
}else if (temp.matches(chinese)) {
if(k==1){
valueLength+=1;
k=0;
}
valueLength += 0;
}else if(temp.matches(english)) {
k = 1;
valueLength += 0;
}else{
if(k==1){
valueLength+=1;
k=0;
}
valueLength += 0;//标点符号
}
}
return valueLength;
}


}

 
































































以上是关于Java逻辑代码判断字数的主要内容,如果未能解决你的问题,请参考以下文章

备份Edittext编辑框字数限制ui以及逻辑

判断一个字符串中出现次数最多的字符,并统计字数

文本框的字数限制功能jquery插件

Java GUI 实时字数计数器

PHP获取中英文混合字符串的字数

求数组最大字数组之和第一部