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
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -166,9 +166,9 @@ The following table presents types, values and simplified, short prototypes of t
166
166
| | string **replace_first**(string_view sv, string_view what, string_view with) | string with first occurrence of 'what' replaced with 'with' |
167
167
| | string **replace_last**(string_view sv, string_view what, string_view with) | string with last occurrence of 'what' replaced with 'with' |
168
168
| | | |
169
-
| strip | string **strip**(string_view sv, string_view set) | string with characters given in set stripped from left and right|
170
-
| | string **strip_left**(string_view sv, string_view set) | string with characters given in set stripped from left|
171
-
| | string **strip_right**(string_view sv, string_view set) | string with characters given in set stripped from right|
169
+
| strip | string **strip**(string_view sv\[, string_view set\]) | string with characters given in set stripped from left and right, default " \t\n"|
170
+
| | string **strip_left**(string_view sv\[, string_view set\]) | string with characters given in set stripped from left, default " \t\n"|
171
+
| | string **strip_right**(string_view sv\[, string_view set\]) | string with characters given in set stripped from right, default " \t\n"|
172
172
| | | |
173
173
|**Combining**| string **append**(string_view head, string_view tail) | string with tail appended to head |
174
174
| | string **join**(collection\<string_view\> vec, string_view sep) | string with elements of collection joined with given separator string |
0 commit comments