string lenth
时间: 2023-07-21 11:29:17 浏览: 97
string check
获取字符串长度的方法依赖于所使用的编程语言。 在大多数编程语言中,可以使用字符串的 length() 或 size() 方法来获取字符串的长度。 以下是几种编程语言的示例代码:
Java:
```
String str = "Hello World";
int len = str.length();
System.out.println("The length of the string is " + len);
```
Python:
```
str = "Hello World"
len = len(str)
print("The length of the string is", len)
```
C++:
```
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "Hello World";
int len = str.length();
cout << "The length of the string is " << len << endl;
return 0;
}
```
JavaScript:
```
let str = "Hello World";
let len = str.length;
console.log("The length of the string is " + len);
```
注意:在某些编程语言中,字符串长度可能不包括字符串末尾的空字符。
阅读全文