码迷,mamicode.com
首页 > 编程语言 > 详细

Java逻辑代码判断字数

时间:2017-09-30 09:59:32      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:符号   equal   als   .com   chinese   turn   sub   nbsp   标点符号   

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逻辑代码判断字数

标签:符号   equal   als   .com   chinese   turn   sub   nbsp   标点符号   

原文地址:http://www.cnblogs.com/weyine/p/7613579.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!