MCPcopy Create free account
hub / github.com/ashvardanian/StringZilla / split

Method split

include/stringzilla/stringzilla.hpp:2572–2572  ·  view source on GitHub ↗

@brief Split around occurrences of a given string. */

Source from the content-addressed store, hash-verified

2570
2571 /** @brief Split around occurrences of a given string. */
2572 split_type split(string_view delimiter) const noexcept { return {*this, delimiter}; }
2573
2574 /** @brief Split around occurrences of a given string in @b reverse order. */
2575 rsplit_type rsplit(string_view delimiter) const noexcept { return {*this, delimiter}; }

Callers 15

wcFunction · 0.80
get_files_fromFunction · 0.80
test_library_propertiesFunction · 0.80
test_unit_splitFunction · 0.80
test_unit_strs_sequenceFunction · 0.80
test_unit_globalsFunction · 0.80
implFunction · 0.80
check_identicalFunction · 0.80
test_fuzzy_sortingFunction · 0.80

Calls 1

whitespaces_setFunction · 0.85

Tested by 15

test_library_propertiesFunction · 0.64
test_unit_splitFunction · 0.64
test_unit_strs_sequenceFunction · 0.64
test_unit_globalsFunction · 0.64
implFunction · 0.64
check_identicalFunction · 0.64
test_fuzzy_sortingFunction · 0.64