Skip to content

Commit 42d54c6

Browse files
committed
Move down strip() in table [ci skip]
1 parent 66408a0 commit 42d54c6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,14 +131,14 @@ The following table presents types, values and simplified, short prototypes of t
131131
|   | string **to_uppercase**(string_view sv) | string transformed to uppercase |
132132
|   | string **capitalize**(string_view sv) | string transformed to start with capital |
133133
|   | string **substring**(string_view sv, size_t pos \[, size_t count\]); | substring starting at given position of given length, default up to end |
134-
|   | string **strip**(string_view sv, string_view set) | string with characters given in set stripped from left and right |
135-
|   | string **strip_left**(string_view sv, string_view set) | string with characters given in set stripped from left |
136-
|   | string **strip_right**(string_view sv, string_view set) | string with characters given in set stripped from right |
137134
|   | string **insert**(string_view sv, size_t pos string_view what) | string with substring 'what' inserted at given position |
138-
|   | string **replace**(string_view sv, size_t pos, size_t length, string_view with) | string with substring pos to pos+length replaced with 'what' |
135+
|   | string **replace**(string_view sv, size_t pos, size_t length, string_view with) | string with substring pos to pos+length replaced with 'whith' |
139136
|   | string **replace_all**(string_view sv, string_view what, string_view with) | string with all occurrences of 'what' replaced with 'with' |
140137
|   | string **replace_first**(string_view sv, string_view what, string_view with) | string with first occurrence of 'what' replaced with 'with' |
141138
|   | string **replace_last**(string_view sv, string_view what, string_view with) | string with last occurrence of 'what' replaced with 'with' |
139+
|   | string **strip**(string_view sv, string_view set) | string with characters given in set stripped from left and right |
140+
|   | string **strip_left**(string_view sv, string_view set) | string with characters given in set stripped from left |
141+
|   | string **strip_right**(string_view sv, string_view set) | string with characters given in set stripped from right |
142142
|   |   |   |
143143
| **Combining** | string **append**(string_view head, string_view tail) | string with tail appended to head |
144144
| &nbsp; | string **join**(collection\<string_view\> vec, string_view sep) | string with elements of collection joined with given separator string |

0 commit comments

Comments
 (0)