You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -131,14 +131,14 @@ The following table presents types, values and simplified, short prototypes of t
131
131
| | string **to_uppercase**(string_view sv) | string transformed to uppercase |
132
132
| | string **capitalize**(string_view sv) | string transformed to start with capital |
133
133
| | 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 |
137
134
| | 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'|
139
136
| | string **replace_all**(string_view sv, string_view what, string_view with) | string with all occurrences of 'what' replaced with 'with' |
140
137
| | string **replace_first**(string_view sv, string_view what, string_view with) | string with first occurrence of 'what' replaced with 'with' |
141
138
| | 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 |
142
142
| | | |
143
143
|**Combining**| string **append**(string_view head, string_view tail) | string with tail appended to head |
144
144
| | string **join**(collection\<string_view\> vec, string_view sep) | string with elements of collection joined with given separator string |
0 commit comments