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
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,6 +132,7 @@ The following table presents types, values and simplified, short prototypes of t
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
134
| | string **erase**(string_view sv, size_t pos \[, size_t count\]) | string with substring at given position of given length removed, default up to end |
135
+
| | string **erase_all**(string_view sv, string_view what) | string with all occurrences of 'what' removed |
135
136
| | string **insert**(string_view sv, size_t pos, string_view what) | string with substring 'what' inserted at given position |
136
137
| | string **replace**(string_view sv, size_t pos, size_t length, string_view with) | string with substring pos to pos+length replaced with 'with' |
137
138
| | string **replace_all**(string_view sv, string_view what, string_view with) | string with all occurrences of 'what' replaced with 'with' |
@@ -233,6 +234,7 @@ to_uppercase: string transformed to uppercase
233
234
append: string with second string concatenated to first string
234
235
substring: substring starting at given position of given length, default up to end
235
236
erase: string with substring at given position of given length removed - default up to end
237
+
erase_all: string with all occurrences of substring removed
236
238
insert: string with substring inserted at given position
237
239
replace: string with substring given by position and length replaced
238
240
replace_all: string with all occurrences of substring replaced
0 commit comments