We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8444137 + e974cf0 commit 1f07d8aCopy full SHA for 1f07d8a
2 files changed
examples/xtd.core.examples/strings/split/README.md
@@ -18,7 +18,7 @@ xtdc run
18
## Output
19
20
```
21
-strings.size = 5
+strings.length = 5
22
One
23
Two
24
Three
examples/xtd.core.examples/strings/split/src/split.cpp
@@ -3,14 +3,14 @@
3
auto main() -> int {
4
auto strings = string("One Two Three\tFour\nFive").split();
5
6
- console::write_line("strings.size = {}", strings.length());
+ console::write_line("strings.length = {}", strings.length());
7
for (auto string : strings)
8
console::write_line(string);
9
}
10
11
// This code produces the following output :
12
//
13
-// strings.size = 5
+// strings.length = 5
14
// One
15
// Two
16
// Three
0 commit comments