用普通的for+if语句判断字符串中字母,数字,空格,其他字符的数目
function func(string){
var str=string,word=0,num=0,space=0,other=0;
for(var i=0,count=str.length;i<count;i++)
{if('A'<=str.charAt(i)&&str.charAt(i)<='Z'||'a'<=str.charAt(i)&&str.charAt(i)<='z')
word++;
else if(0<=str.charAt(i)&&str.charAt(i)<=9)
num++;
else if(str.charAt(i)==' ')
space++;
else
other++;
}
document.write('word:'+word+"<br/>");//2
document.write('number:'+num+"<br/>");//3?为什么这样?
document.write('space:'+space+"<br/>");//0?为什么?
document.write('otner char:'+other+"<br/>");//3
}
func('12qw *&^');
else if(0<=str.charAt(i)&&str.charAt(i)<=9)
改成
else if('0'<=str.charAt(i)&&str.charAt(i)<='9')
一个是数字0~9,一个是数字字符'0'~'9',两者是不一样的
我帮你想一种另外的方式
首先要了解不同类型变量比较的规则:
回到这个问题,出错的地方就是有一个空格的单字符串和数字0,9的比较,即第二个判断条件。
循环开始,
当i=0;str.charAt(i)='1'时,字符串'1'强制类型转换成数字1,满足条件,num++;
当i=1;str.charAt(i)='2'时情况同上;
当i=3;str.charAt(i)=' ',有一个空格字符的单字符串,此时同样强制类型转换为了数字0,满足条件0<=0&&0<==9,num++,num=3;
此处强制类型转换是利用Number(str)->number。可以在控制台加断点一步一步调试。
参考:ASCII码,字符串转换为数字