为了在dart查找字符串的长度,我们使用Dart字符串类的 length 属性。此方法以整数形式返回字符串的长度。
Syntax: string_name.length
Return Type: integer
示例:在Dart查找字符串的长度。
Dart
// Main function
main() {
// Declaring a string variable
String gfg = "Welcome to GeeksForGeeks";
// Finding the length
int length = gfg.length;
// Printing the length of the string
print(length);
}
输出:
24
说明:上例中包含空格的字符串长度最多为 24。
注意:空字符串的长度等于 0。