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
| |**char_delimiter**| a character, `char_delimiter('&')`|
103
+
|**Type**| None | |
109
104
| | | |
110
105
|**Value**| size_t **string::npos**| not-found position value, in nonstd::string namespace |
111
106
| | | |
@@ -173,7 +168,7 @@ The following table presents types, values and simplified, short prototypes of t
173
168
|**Combining**| string **append**(string_view head, string_view tail) | string with tail appended to head |
174
169
| | string **join**(collection\<string_view\> vec, string_view sep) | string with elements of collection joined with given separator string |
175
170
| | | |
176
-
|**Separating**| vector\<string_view\>**split**(string_view sv, string_view set) | vector of string_view with elements of string separated by characters from given set |
171
+
|**Separating**| vector\<string_view\>**split**(string_view sv, string_view set\[, Nsplit\])| vector of string_view with elements of string separated by characters from given set |
177
172
| | tuple\<string_view, string_view\>**split_left**(string_view sv, string_view set \[, size_t count\]) | tuple with head and tail string_view on given string as split at left by characters in given set, default all in set |
178
173
| | tuple\<string_view, string_view\>**split_right**(string_view sv, string_view set \[, size_t count\]) | tuple with head and tail string_view on given string as split at right by characters in given set, default all in set |
179
174
@@ -281,7 +276,7 @@ strip_left: string with characters in set removed from left of string [" \t\n"]
281
276
strip_right: string with characters in set removed from right of string [" \t\n"]
282
277
strip: string with characters in set removed from left and right of string [" \t\n"]
283
278
join: string with strings from collection joined separated by given separator
284
-
split: split string into vector of string_view given delimiter - literal_delimiter
279
+
split: split string into vector of string_view given set of delimiter characters
285
280
split_left: split string into two-element tuple given set of delimiter characters - forward
286
281
split_right: split string into two-element tuple given set of delimiter characters - reverse
287
282
compare: negative, zero or positive for lsh is less than, equal to or greater than rhs
0 commit comments