join()
Data / String FunctionsDescription
Combines a vector of strings into one string using a separator.
Syntax
std::string join(std::vector v, std::string sep)
Parameters
| Name | Type | Description |
|---|---|---|
| v | std::vector | the strings to join |
| sep | std::string | separator string |
Returns
std::stringRelated
Under the Hood
Implementation in Processing.h / Processing.cpp:
Loading...