Skip to contents

Replace text between two specific strings.

Usage

text_replace_between(text, begin, end, replacement)

Arguments

text

A string.

begin

A string.

end

A string.

replacement

A string.

Value

A string

Note

This function has been auto-generated from the following Raylib function definition:

char * TextReplaceBetween(const char * text, const char * begin, const char * end, const char * replacement);

See also

Examples

if (FALSE) {
text_replace_between("Hello", "text", "text", "text")
}