* Insert text in a position */
| 387 | * Insert text in a position |
| 388 | */ |
| 389 | RLCPP_MAYBEUNUSED RLCPPAPI std::string TextInsert(const std::string& text, const std::string& insert, int position) { |
| 390 | const char* output = ::TextInsert(text.c_str(), insert.c_str(), position); |
| 391 | if (output != NULL) { |
| 392 | return std::string(output); |
| 393 | } |
| 394 | return ""; |
| 395 | } |
| 396 | |
| 397 | /** |
| 398 | * Split text into multiple strings |