MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / string> TextSplit

Method string> TextSplit

include/Functions.hpp:400–404  ·  view source on GitHub ↗

* Split text into multiple strings */

Source from the content-addressed store, hash-verified

398 * Split text into multiple strings
399 */
400RLCPP_MAYBEUNUSED RLCPPAPI std::vector<std::string> TextSplit(const std::string& text, char delimiter) {
401 int count;
402 const char* const* split = ::TextSplit(text.c_str(), delimiter, &count);
403 return std::vector<std::string>(split, split + count);
404}
405
406/**
407 * Find first text occurrence within a string

Callers

nothing calls this directly

Calls 1

c_strMethod · 0.80

Tested by

no test coverage detected