//求字符串长度 #include"stdafx.h" #include<iostream> using namespace std; void main(){ char s[201]; int i = 0; cout << "Please enter a string(ended with enter):" << endl; cin.getline(s, 200); //cin.getline()的使用 while (s[i])
/* Date: 10/03/19 12:49 Description: 求字符串长度函数实现的三种方法*/ #include<stdio.h> int strlen1(char *s);int strlen2(char *s);int strlen3(char *s); int main(void) { char str[]="The function to test my length."; printf("The length1 is:%d\n",
//编写一个方法 求一个字符串的字节长度; //假设一个中文占两个字节 var str = 'A沪-5889588'; var json = {len:0}; var re = /[\u4e00-\u9fa5]/; //中文字符串正则 for (var i = 0; i < str.length; i++) { if (re.test(str.charAt(i))) { //判断当前字符是否为中文,为中文时加两个长度,不为中文时加一个长度 json['len'] = json['len'] +