Bash++
Bash++ compiler internal documentation
Macros | Functions
replace_all.cpp File Reference
#include <string>
Include dependency graph for replace_all.cpp:
This graph shows which files directly or indirectly include this file:

Macros

#define SRC_BPP_REPLACE_ALL_CPP_
 

Functions

std::string replace_all (std::string str, const std::string &from, const std::string &to)
 Replace all occurences of a substring in a string. More...
 

Macro Definition Documentation

◆ SRC_BPP_REPLACE_ALL_CPP_

#define SRC_BPP_REPLACE_ALL_CPP_

Copyright (C) 2025 rail5 Bash++: Bash with classes

Function Documentation

◆ replace_all()

std::string replace_all ( std::string  str,
const std::string &  from,
const std::string &  to 
)

Replace all occurences of a substring in a string.

Parameters
strThe string to search in
fromThe substring to search for
toThe substring to replace with