@@ -165,7 +165,7 @@ end program demo
165
165
166
166
#### Description
167
167
168
- Returns the length of the character sequence represented by the string.
168
+ Returns the length of the string.
169
169
170
170
#### Syntax
171
171
@@ -476,7 +476,7 @@ end program demo
476
476
477
477
#### Description
478
478
479
- Return the character sequence represented by the string.
479
+ Return the character at a certain position in the string.
480
480
481
481
#### Syntax
482
482
@@ -523,7 +523,7 @@ end program demo
523
523
524
524
#### Description
525
525
526
- Return the character sequence represented by the string.
526
+ Return a substring from the character sequence of the string.
527
527
528
528
#### Syntax
529
529
@@ -713,9 +713,7 @@ end program demo
713
713
714
714
#### Description
715
715
716
- Scan a * string* for the presence of a * set* of characters. Scans a * string* for
717
- any of the characters in a * set* of characters.
718
-
716
+ Scans a * string* for the presence any of the characters in a * set* of characters.
719
717
If * back* is either absent or * false* , this function returns the position
720
718
of the leftmost character of * string* that is in * set* . If * back* is * true* ,
721
719
the rightmost position is returned. If no character of * set* is found in
@@ -770,9 +768,7 @@ end program demo
770
768
771
769
#### Description
772
770
773
- Scan a * string* for the absence of a * set* of characters. Verifies that all
774
- the characters in * string* belong to the set of characters in * set* .
775
-
771
+ Verifies that all the characters in * string* belong to the set of characters in * set* .
776
772
If * back* is either absent or * false* , this function returns the position
777
773
of the leftmost character of * string* that is not in * set* . If * back* is * true* ,
778
774
the rightmost position is returned. If all characters of * string* are found
0 commit comments